diff --git a/code/ZAS/Phoron.dm b/code/ZAS/Phoron.dm
index 57a7d21036..e12beb900f 100644
--- a/code/ZAS/Phoron.dm
+++ b/code/ZAS/Phoron.dm
@@ -107,7 +107,7 @@ obj/var/contaminated = 0
updatehealth()
//Burn eyes if exposed.
- if(vsc.plc.EYE_BURNS && (species.breath_type != "phoron"))
+ if(vsc.plc.EYE_BURNS && species.breath_type && (species.breath_type != "phoron")) //VOREStation Edit: those who don't breathe
var/burn_eyes = 1
//Check for protective glasses
diff --git a/code/__defines/chemistry_vr.dm b/code/__defines/chemistry_vr.dm
index 094bfc2139..f15ebd4a56 100644
--- a/code/__defines/chemistry_vr.dm
+++ b/code/__defines/chemistry_vr.dm
@@ -1,2 +1,3 @@
// More for our custom races
-#define IS_CHIMERA 12
\ No newline at end of file
+#define IS_CHIMERA 12
+#define IS_SHADEKIN 13
\ No newline at end of file
diff --git a/code/__defines/mobs_vr.dm b/code/__defines/mobs_vr.dm
index 5e9bb78189..924b8b4814 100644
--- a/code/__defines/mobs_vr.dm
+++ b/code/__defines/mobs_vr.dm
@@ -35,4 +35,6 @@
#define SPECIES_MONKEY_NEVREAN "Sparra"
#define SPECIES_MONKEY_SERGAL "Saru"
#define SPECIES_MONKEY_VULPKANIN "Wolpin"
+
#define SPECIES_WEREBEAST "Werebeast"
+#define SPECIES_SHADEKIN "Shadekin"
diff --git a/code/_helpers/_global_objects_vr.dm b/code/_helpers/_global_objects_vr.dm
new file mode 100644
index 0000000000..84642cc4d1
--- /dev/null
+++ b/code/_helpers/_global_objects_vr.dm
@@ -0,0 +1 @@
+var/datum/gear_tweak/collar_tag/gear_tweak_collar_tag = new()
\ No newline at end of file
diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm
index c9a64048a8..d57bd09558 100644
--- a/code/_helpers/global_lists_vr.dm
+++ b/code/_helpers/global_lists_vr.dm
@@ -407,7 +407,7 @@ var/global/list/contamination_colors = list("green",
"beige",
"pink")
-//For the mechanic of leaving remains. Ones listed below are basically ones that got no bones.
+//For the mechanic of leaving remains. Ones listed below are basically ones that got no bones or leave no trace after death.
var/global/list/remainless_species = list(SPECIES_PROMETHEAN,
SPECIES_DIONA,
SPECIES_ALRAUNE,
@@ -426,7 +426,8 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN,
SPECIES_XENO_SENTINEL,
SPECIES_XENO_QUEEN,
SPECIES_SHADOW,
- SPECIES_GOLEM) //Some special species that may or may not be ever used in event too
+ SPECIES_GOLEM, //Some special species that may or may not be ever used in event too,
+ SPECIES_SHADEKIN) //Shadefluffers just poof away
/hook/startup/proc/init_vore_datum_ref_lists()
var/paths
diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm
index 299ccf6ec2..6fc470cc81 100644
--- a/code/_onclick/click.dm
+++ b/code/_onclick/click.dm
@@ -134,6 +134,12 @@
// A is a turf or is on a turf, or in something on a turf (pen in a box); but not something in something on a turf (pen in a box in a backpack)
sdepth = A.storage_depth_turf()
if(isturf(A) || isturf(A.loc) || (sdepth != -1 && sdepth <= 1))
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = src
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(A.Adjacent(src) || (W && W.attack_can_reach(src, A, W.reach)) ) // see adjacent.dm
if(W)
// Return 1 in attackby() to prevent afterattack() effects (when safely moving items for example)
diff --git a/code/_onclick/hud/_defines_vr.dm b/code/_onclick/hud/_defines_vr.dm
new file mode 100644
index 0000000000..e72150b44c
--- /dev/null
+++ b/code/_onclick/hud/_defines_vr.dm
@@ -0,0 +1,2 @@
+#define ui_shadekin_dark_display "EAST-1:28,CENTER-3:15"
+#define ui_shadekin_energy_display "EAST-1:28,CENTER-4:15"
\ No newline at end of file
diff --git a/code/_onclick/hud/ability_screen_objects.dm b/code/_onclick/hud/ability_screen_objects.dm
index fc06f8e0cc..655a451e92 100644
--- a/code/_onclick/hud/ability_screen_objects.dm
+++ b/code/_onclick/hud/ability_screen_objects.dm
@@ -180,7 +180,8 @@
/mob/New()
..()
- ability_master = new /obj/screen/movable/ability_master(src)
+ if(!ability_master) //VOREStation Edit: S H A D E K I N
+ ability_master = new /obj/screen/movable/ability_master(src)
///////////ACTUAL ABILITIES////////////
//This is what you click to do things//
diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm
index 1c903700b0..f1aba60b10 100644
--- a/code/_onclick/hud/human.dm
+++ b/code/_onclick/hud/human.dm
@@ -293,6 +293,18 @@
mymob.nutrition_icon.screen_loc = ui_nutrition
hud_elements |= mymob.nutrition_icon
+ //VOREStation Addition begin
+ mymob.shadekin_dark_display = new /obj/screen/shadekin/darkness()
+ mymob.shadekin_dark_display.screen_loc = ui_shadekin_dark_display
+ mymob.shadekin_dark_display.icon_state = "dark"
+ hud_elements |= mymob.shadekin_dark_display
+
+ mymob.shadekin_energy_display = new /obj/screen/shadekin/energy()
+ mymob.shadekin_energy_display.screen_loc = ui_shadekin_energy_display
+ mymob.shadekin_energy_display.icon_state = "energy0"
+ hud_elements |= mymob.shadekin_energy_display
+ //VOREStation Addition end
+
mymob.ling_chem_display = new /obj/screen/ling/chems()
mymob.ling_chem_display.screen_loc = ui_ling_chemical_display
mymob.ling_chem_display.icon_state = "ling_chems"
diff --git a/code/_onclick/hud/screen_objects_vr.dm b/code/_onclick/hud/screen_objects_vr.dm
index ea6b72cd10..c1fbd99448 100644
--- a/code/_onclick/hud/screen_objects_vr.dm
+++ b/code/_onclick/hud/screen_objects_vr.dm
@@ -1,16 +1,19 @@
-/obj/screen/proc/Click_vr(location, control, params) //VORESTATION AI TEMPORARY REMOVAL
+/obj/screen/proc/Click_vr(location, control, params)
if(!usr) return 1
switch(name)
//Shadekin
if("darkness")
- var/mob/living/simple_mob/shadekin/sk = usr
- var/turf/T = get_turf(sk)
+ var/turf/T = get_turf(usr)
var/darkness = round(1 - T.get_lumcount(),0.1)
to_chat(usr,"Darkness: [darkness]")
if("energy")
- var/mob/living/simple_mob/shadekin/sk = usr
- to_chat(usr,"Energy: [sk.energy] ([sk.dark_gains])")
+ var/mob/living/simple_mob/shadekin/SK = usr
+ if(istype(SK))
+ to_chat(usr,"Energy: [SK.energy] ([SK.dark_gains])")
+ var/mob/living/carbon/human/H = usr
+ if(istype(H) && istype(H.species, /datum/species/shadekin))
+ to_chat(usr,"Energy: [H.shadekin_get_energy(H)]")
diff --git a/code/datums/beam.dm b/code/datums/beam.dm
index 24f5e6c91f..88fe9dbf1c 100644
--- a/code/datums/beam.dm
+++ b/code/datums/beam.dm
@@ -138,6 +138,12 @@
return
/obj/effect/ebeam/deadly/Crossed(atom/A)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = A
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
..()
A.ex_act(1)
@@ -157,6 +163,12 @@
on_contact(A)
/obj/effect/ebeam/reactive/Crossed(atom/A)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = A
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
..()
on_contact(A)
diff --git a/code/datums/looping_sounds/machinery_sounds.dm b/code/datums/looping_sounds/machinery_sounds.dm
index 4795f63687..599f8f4632 100644
--- a/code/datums/looping_sounds/machinery_sounds.dm
+++ b/code/datums/looping_sounds/machinery_sounds.dm
@@ -51,7 +51,7 @@
start_sound = 'sound/machines/air_pump/airpumpstart.ogg'
start_length = 10
mid_sounds = list('sound/machines/air_pump/airpumpidle.ogg' = 1)
- mid_length = 10
+ mid_length = 4
end_sound = 'sound/machines/air_pump/airpumpshutdown.ogg'
- volume = 20
+ volume = 15
pref_check = /datum/client_preference/air_pump_noise
\ No newline at end of file
diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm
index 24c2ed5f52..986800ef9f 100644
--- a/code/game/gamemodes/cult/cult_structures.dm
+++ b/code/game/gamemodes/cult/cult_structures.dm
@@ -116,6 +116,12 @@
return
/obj/effect/gateway/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
spawn(0)
return
return
@@ -148,6 +154,12 @@
qdel(src)
/obj/effect/gateway/active/Crossed(var/atom/A)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = A
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(!istype(A, /mob/living))
return
diff --git a/code/game/machinery/vending_vr.dm b/code/game/machinery/vending_vr.dm
index 0bf7b94714..f96cd83029 100644
--- a/code/game/machinery/vending_vr.dm
+++ b/code/game/machinery/vending_vr.dm
@@ -145,4 +145,1104 @@
/obj/item/weapon/reagent_containers/blood/empty = 5)
contraband = list(/obj/item/weapon/reagent_containers/glass/bottle/stoxin = 2)
req_log_access = access_cmo
- has_logs = 1
\ No newline at end of file
+ has_logs = 1
+
+/obj/machinery/vending/loadout
+ name = "Fingers and Toes"
+ desc = "A special vendor for gloves and shoes!"
+ product_ads = "Do you have fingers and toes? COVER THEM UP!;Show me your toes! Wait. NO DON'T! BUY NEW SHOES!;Don't leave prints, BUY SOME GLOVES!;Remember to check your shoes for micros! You don't have to let them out, but just check for them!;Fingers and Toes is not liable for micro entrapment or abuse under the feet of our patrons.!;This little piggy went WE WE WE all the way down to FINGERS AND TOES to pick up some sweet new gloves and shoes."
+ icon_state = "glovesnshoes"
+ products = list(/obj/item/clothing/gloves/evening = 5,
+ /obj/item/clothing/gloves/fingerless = 5,
+ /obj/item/clothing/gloves/black = 5,
+ /obj/item/clothing/gloves/blue = 5,
+ /obj/item/clothing/gloves/brown = 5,
+ /obj/item/clothing/gloves/color = 5,
+ /obj/item/clothing/gloves/green = 5,
+ /obj/item/clothing/gloves/grey = 5,
+ /obj/item/clothing/gloves/sterile/latex = 5,
+ /obj/item/clothing/gloves/light_brown = 5,
+ /obj/item/clothing/gloves/sterile/nitrile = 5,
+ /obj/item/clothing/gloves/orange = 5,
+ /obj/item/clothing/gloves/purple = 5,
+ /obj/item/clothing/gloves/red = 5,
+ /obj/item/clothing/gloves/fluff/siren = 5,
+ /obj/item/clothing/gloves/white = 5,
+ /obj/item/clothing/gloves/duty = 5,
+ /obj/item/clothing/shoes/athletic = 5,
+ /obj/item/clothing/shoes/boots/fluff/siren = 5,
+ /obj/item/clothing/shoes/slippers = 5,
+ /obj/item/clothing/shoes/boots/cowboy/classic = 5,
+ /obj/item/clothing/shoes/boots/cowboy = 5,
+ /obj/item/clothing/shoes/boots/duty = 5,
+ /obj/item/clothing/shoes/flats/white/color = 5,
+ /obj/item/clothing/shoes/flipflop = 5,
+ /obj/item/clothing/shoes/heels = 5,
+ /obj/item/clothing/shoes/hitops/black = 5,
+ /obj/item/clothing/shoes/hitops/blue = 5,
+ /obj/item/clothing/shoes/hitops/green = 5,
+ /obj/item/clothing/shoes/hitops/orange = 5,
+ /obj/item/clothing/shoes/hitops/purple = 5,
+ /obj/item/clothing/shoes/hitops/red = 5,
+ /obj/item/clothing/shoes/flats/white/color = 5,
+ /obj/item/clothing/shoes/hitops/yellow = 5,
+ /obj/item/clothing/shoes/boots/jackboots = 5,
+ /obj/item/clothing/shoes/boots/jungle = 5,
+ /obj/item/clothing/shoes/black/cuffs = 5,
+ /obj/item/clothing/shoes/black/cuffs/blue = 5,
+ /obj/item/clothing/shoes/black/cuffs/red = 5,
+ /obj/item/clothing/shoes/sandal = 5,
+ /obj/item/clothing/shoes/black = 5,
+ /obj/item/clothing/shoes/blue = 5,
+ /obj/item/clothing/shoes/brown = 5,
+ /obj/item/clothing/shoes/laceup = 5,
+ /obj/item/clothing/shoes/green = 5,
+ /obj/item/clothing/shoes/leather = 5,
+ /obj/item/clothing/shoes/orange = 5,
+ /obj/item/clothing/shoes/purple = 5,
+ /obj/item/clothing/shoes/red = 5,
+ /obj/item/clothing/shoes/white = 5,
+ /obj/item/clothing/shoes/yellow = 5,
+ /obj/item/clothing/shoes/skater = 5,
+ /obj/item/clothing/shoes/boots/cowboy/snakeskin = 5,
+ /obj/item/clothing/shoes/boots/jackboots/toeless = 5,
+ /obj/item/clothing/shoes/boots/workboots/toeless = 5,
+ /obj/item/clothing/shoes/boots/winter = 5,
+ /obj/item/clothing/shoes/boots/workboots = 5,
+ /obj/item/clothing/shoes/footwraps = 5)
+ prices = list(/obj/item/clothing/gloves/evening = 200,
+ /obj/item/clothing/gloves/fingerless = 200,
+ /obj/item/clothing/gloves/black = 200,
+ /obj/item/clothing/gloves/blue = 200,
+ /obj/item/clothing/gloves/brown = 200,
+ /obj/item/clothing/gloves/color = 200,
+ /obj/item/clothing/gloves/green = 200,
+ /obj/item/clothing/gloves/grey = 200,
+ /obj/item/clothing/gloves/sterile/latex = 200,
+ /obj/item/clothing/gloves/light_brown = 200,
+ /obj/item/clothing/gloves/sterile/nitrile = 200,
+ /obj/item/clothing/gloves/orange = 200,
+ /obj/item/clothing/gloves/purple = 200,
+ /obj/item/clothing/gloves/red = 200,
+ /obj/item/clothing/gloves/fluff/siren = 200,
+ /obj/item/clothing/gloves/white = 200,
+ /obj/item/clothing/gloves/duty = 200,
+ /obj/item/clothing/shoes/athletic = 100,
+ /obj/item/clothing/shoes/boots/fluff/siren = 100,
+ /obj/item/clothing/shoes/slippers = 100,
+ /obj/item/clothing/shoes/boots/cowboy/classic = 100,
+ /obj/item/clothing/shoes/boots/cowboy = 100,
+ /obj/item/clothing/shoes/boots/duty = 200,
+ /obj/item/clothing/shoes/flats/white/color = 100,
+ /obj/item/clothing/shoes/flipflop = 100,
+ /obj/item/clothing/shoes/heels = 100,
+ /obj/item/clothing/shoes/hitops/black = 100,
+ /obj/item/clothing/shoes/hitops/blue = 100,
+ /obj/item/clothing/shoes/hitops/green = 100,
+ /obj/item/clothing/shoes/hitops/orange = 100,
+ /obj/item/clothing/shoes/hitops/purple = 100,
+ /obj/item/clothing/shoes/hitops/red = 100,
+ /obj/item/clothing/shoes/flats/white/color = 100,
+ /obj/item/clothing/shoes/hitops/yellow = 100,
+ /obj/item/clothing/shoes/boots/jackboots = 100,
+ /obj/item/clothing/shoes/boots/jungle = 200,
+ /obj/item/clothing/shoes/black/cuffs = 100,
+ /obj/item/clothing/shoes/black/cuffs/blue = 100,
+ /obj/item/clothing/shoes/black/cuffs/red = 100,
+ /obj/item/clothing/shoes/sandal = 100,
+ /obj/item/clothing/shoes/black = 100,
+ /obj/item/clothing/shoes/blue = 100,
+ /obj/item/clothing/shoes/brown = 100,
+ /obj/item/clothing/shoes/laceup = 100,
+ /obj/item/clothing/shoes/green = 100,
+ /obj/item/clothing/shoes/leather = 100,
+ /obj/item/clothing/shoes/orange = 100,
+ /obj/item/clothing/shoes/purple = 100,
+ /obj/item/clothing/shoes/red = 100,
+ /obj/item/clothing/shoes/white = 100,
+ /obj/item/clothing/shoes/yellow = 100,
+ /obj/item/clothing/shoes/skater = 100,
+ /obj/item/clothing/shoes/boots/cowboy/snakeskin = 100,
+ /obj/item/clothing/shoes/boots/jackboots/toeless = 100,
+ /obj/item/clothing/shoes/boots/workboots/toeless = 100,
+ /obj/item/clothing/shoes/boots/winter = 100,
+ /obj/item/clothing/shoes/boots/workboots = 100,
+ /obj/item/clothing/shoes/footwraps = 100)
+ premium = list(/obj/item/clothing/gloves/rainbow = 1,
+ /obj/item/clothing/shoes/rainbow = 1,)
+ contraband = list(/obj/item/clothing/shoes/syndigaloshes = 1,
+ /obj/item/clothing/shoes/clown_shoes = 1)
+/obj/machinery/vending/loadout/uniform
+ name = "The Basics"
+ desc = "A vendor using compressed matter cartridges to store large amounts of basic station uniforms."
+ product_ads = "Don't get caught naked!;Pick up your uniform!;Using compressed matter cartridges and VERY ETHICAL labor practices, we bring you the uniforms you need!;No uniform? No problem!;We've got your covered!;The Basics is not responsible for being crushed under the amount of things inside our machines. DO NOT VEND IN EXCESS!!"
+ icon_state = "loadout"
+ icon_vend = "loadout-purchase"
+ vend_delay = 16
+ products = list(/obj/item/device/pda = 50,
+ /obj/item/device/radio/headset = 50,
+ /obj/item/weapon/storage/backpack/ = 10,
+ /obj/item/weapon/storage/backpack/messenger = 10,
+ /obj/item/weapon/storage/backpack/satchel = 10,
+ /obj/item/clothing/under/color = 5,
+ /obj/item/clothing/under/color/aqua = 5,
+ /obj/item/clothing/under/color/black = 5,
+ /obj/item/clothing/under/color/blackjumpskirt = 5,
+ /obj/item/clothing/under/color/blue = 5,
+ /obj/item/clothing/under/color/brown = 5,
+ /obj/item/clothing/under/color/green = 5,
+ /obj/item/clothing/under/color/grey = 5,
+ /obj/item/clothing/under/color/orange = 5,
+ /obj/item/clothing/under/color/pink = 5,
+ /obj/item/clothing/under/color/red = 5,
+ /obj/item/clothing/under/color/white = 5,
+ /obj/item/clothing/under/color/yellow = 5,
+ /obj/item/clothing/shoes/black = 20,
+ /obj/item/clothing/shoes/white = 20)
+/obj/machinery/vending/loadout/accessory
+ name = "Looty Inc."
+ desc = "A special vendor for accessories."
+ product_ads = "Want shinies? We have the shinies.;Need that special something to complete your outfit? We have what you need!;Ditch that old dull dangly something you've got and pick up one of our shinies!;Bracelets, collars, scarfs rings and more! We have the fancy things you need!;Does your pet need a collar? We don't judge! Keep them in line with one of one of ours!;Top of the line materials! 'Hand crafted' goods!"
+ icon_state = "accessory"
+ icon_vend = "accessory-purchase"
+ vend_delay = 6
+ products = list(/obj/item/clothing/accessory = 5,
+ /obj/item/clothing/accessory/armband/med/color = 10,
+ /obj/item/clothing/accessory/asymmetric = 5,
+ /obj/item/clothing/accessory/asymmetric/purple = 5,
+ /obj/item/clothing/accessory/asymmetric/green = 5,
+ /obj/item/clothing/accessory/bracelet = 5,
+ /obj/item/clothing/accessory/bracelet/material = 5,
+ /obj/item/clothing/accessory/bracelet/friendship = 5,
+ /obj/item/clothing/accessory/chaps = 5,
+ /obj/item/clothing/accessory/chaps/black = 5,
+ /obj/item/weapon/storage/briefcase/clutch = 1,
+ /obj/item/clothing/accessory/collar = 5,
+ /obj/item/clothing/accessory/collar/bell = 5,
+ /obj/item/clothing/accessory/collar/spike = 5,
+ /obj/item/clothing/accessory/collar/pink = 5,
+ /obj/item/clothing/accessory/collar/holo = 5,
+ /obj/item/clothing/accessory/collar/shock = 5,
+ /obj/item/weapon/storage/belt/fannypack = 1,
+ /obj/item/weapon/storage/belt/fannypack/white = 5,
+ /obj/item/clothing/accessory/fullcape = 5,
+ /obj/item/clothing/accessory/halfcape = 5,
+ /obj/item/clothing/accessory/hawaii = 5,
+ /obj/item/clothing/accessory/hawaii/random = 5,
+ /obj/item/clothing/accessory/locket = 5,
+ /obj/item/weapon/storage/backpack/purse = 1,
+ /obj/item/clothing/accessory/sash = 5,
+ /obj/item/clothing/accessory/scarf = 5,
+ /obj/item/clothing/accessory/scarf/red = 5,
+ /obj/item/clothing/accessory/scarf/darkblue = 5,
+ /obj/item/clothing/accessory/scarf/purple = 5,
+ /obj/item/clothing/accessory/scarf/yellow = 5,
+ /obj/item/clothing/accessory/scarf/orange = 5,
+ /obj/item/clothing/accessory/scarf/lightblue = 5,
+ /obj/item/clothing/accessory/scarf/white = 5,
+ /obj/item/clothing/accessory/scarf/black = 5,
+ /obj/item/clothing/accessory/scarf/zebra = 5,
+ /obj/item/clothing/accessory/scarf/christmas = 5,
+ /obj/item/clothing/accessory/scarf/stripedred = 5,
+ /obj/item/clothing/accessory/scarf/stripedgreen = 5,
+ /obj/item/clothing/accessory/scarf/stripedblue = 5,
+ /obj/item/clothing/accessory/jacket = 5,
+ /obj/item/clothing/accessory/jacket/checkered = 5,
+ /obj/item/clothing/accessory/jacket/burgundy = 5,
+ /obj/item/clothing/accessory/jacket/navy = 5,
+ /obj/item/clothing/accessory/jacket/charcoal = 5,
+ /obj/item/clothing/accessory/vest = 5,
+ /obj/item/clothing/accessory/sweater = 5,
+ /obj/item/clothing/accessory/sweater/pink = 5,
+ /obj/item/clothing/accessory/sweater/mint = 5,
+ /obj/item/clothing/accessory/sweater/blue = 5,
+ /obj/item/clothing/accessory/sweater/heart = 5,
+ /obj/item/clothing/accessory/sweater/nt = 5,
+ /obj/item/clothing/accessory/sweater/keyhole = 5,
+ /obj/item/clothing/accessory/sweater/winterneck = 5,
+ /obj/item/clothing/accessory/sweater/uglyxmas = 5,
+ /obj/item/clothing/accessory/sweater/flowersweater = 5,
+ /obj/item/clothing/accessory/sweater/redneck = 5,
+ /obj/item/clothing/accessory/tie = 5,
+ /obj/item/clothing/accessory/tie/horrible = 5,
+ /obj/item/clothing/accessory/tie/white = 5,
+ /obj/item/clothing/accessory/tie/navy = 5,
+ /obj/item/clothing/accessory/tie/yellow = 5,
+ /obj/item/clothing/accessory/tie/darkgreen = 5,
+ /obj/item/clothing/accessory/tie/black = 5,
+ /obj/item/clothing/accessory/tie/red_long = 5,
+ /obj/item/clothing/accessory/tie/red_clip = 5,
+ /obj/item/clothing/accessory/tie/blue_long = 5,
+ /obj/item/clothing/accessory/tie/blue_clip = 5,
+ /obj/item/clothing/accessory/tie/red = 5,
+ /obj/item/clothing/accessory/wcoat = 5,
+ /obj/item/clothing/accessory/wcoat/red = 5,
+ /obj/item/clothing/accessory/wcoat/grey = 5,
+ /obj/item/clothing/accessory/wcoat/brown = 5,
+ /obj/item/clothing/accessory/wcoat/gentleman = 5,
+ /obj/item/clothing/accessory/wcoat/swvest = 5,
+ /obj/item/clothing/accessory/wcoat/swvest/blue = 5,
+ /obj/item/clothing/accessory/wcoat/swvest/red = 5,
+ /obj/item/weapon/storage/wallet = 5,
+ /obj/item/weapon/storage/wallet/poly = 5,
+ /obj/item/weapon/storage/wallet/womens = 5,
+ /obj/item/weapon/lipstick = 5,
+ /obj/item/weapon/lipstick/purple = 5,
+ /obj/item/weapon/lipstick/jade = 5,
+ /obj/item/weapon/lipstick/black = 5,
+ /obj/item/clothing/ears/earmuffs = 5,
+ /obj/item/clothing/ears/earmuffs/headphones = 5,
+ /obj/item/clothing/ears/earring/stud = 5,
+ /obj/item/clothing/ears/earring/dangle = 5,
+ /obj/item/clothing/gloves/ring/mariner = 5,
+ /obj/item/clothing/gloves/ring/engagement = 5,
+ /obj/item/clothing/gloves/ring/seal/signet = 5,
+ /obj/item/clothing/gloves/ring/seal/mason = 5,
+ /obj/item/clothing/gloves/ring/material/plastic = 5,
+ /obj/item/clothing/gloves/ring/material/steel = 5,
+ /obj/item/clothing/gloves/ring/material/gold = 5,
+ /obj/item/clothing/glasses/eyepatch = 5,
+ /obj/item/clothing/glasses/gglasses = 5,
+ /obj/item/clothing/glasses/regular/hipster = 5,
+ /obj/item/clothing/glasses/rimless = 5,
+ /obj/item/clothing/glasses/thin = 5,
+ /obj/item/clothing/glasses/monocle = 5,
+ /obj/item/clothing/glasses/goggles = 5,
+ /obj/item/clothing/glasses/fluff/spiffygogs = 5,
+ /obj/item/clothing/glasses/fakesunglasses = 5,
+ /obj/item/clothing/glasses/fakesunglasses/aviator = 5,
+ /obj/item/clothing/mask/bandana/blue = 5,
+ /obj/item/clothing/mask/bandana/gold = 5,
+ /obj/item/clothing/mask/bandana/green = 5,
+ /obj/item/clothing/mask/bandana/red = 5,
+ /obj/item/clothing/mask/surgical = 5)
+ prices = list(/obj/item/clothing/accessory = 100,
+ /obj/item/clothing/accessory/armband/med/color = 100,
+ /obj/item/clothing/accessory/asymmetric = 100,
+ /obj/item/clothing/accessory/asymmetric/purple = 100,
+ /obj/item/clothing/accessory/asymmetric/green = 100,
+ /obj/item/clothing/accessory/bracelet = 100,
+ /obj/item/clothing/accessory/bracelet/material = 100,
+ /obj/item/clothing/accessory/bracelet/friendship = 100,
+ /obj/item/clothing/accessory/chaps = 100,
+ /obj/item/clothing/accessory/chaps/black = 100,
+ /obj/item/weapon/storage/briefcase/clutch = 100,
+ /obj/item/clothing/accessory/collar = 100,
+ /obj/item/clothing/accessory/collar/bell = 100,
+ /obj/item/clothing/accessory/collar/spike = 100,
+ /obj/item/clothing/accessory/collar/pink = 100,
+ /obj/item/clothing/accessory/collar/holo = 100,
+ /obj/item/clothing/accessory/collar/shock = 100,
+ /obj/item/weapon/storage/belt/fannypack = 100,
+ /obj/item/weapon/storage/belt/fannypack/white = 100,
+ /obj/item/clothing/accessory/fullcape = 100,
+ /obj/item/clothing/accessory/halfcape = 100,
+ /obj/item/clothing/accessory/hawaii = 100,
+ /obj/item/clothing/accessory/hawaii/random = 100,
+ /obj/item/clothing/accessory/locket = 100,
+ /obj/item/weapon/storage/backpack/purse = 100,
+ /obj/item/clothing/accessory/sash = 100,
+ /obj/item/clothing/accessory/scarf = 5,
+ /obj/item/clothing/accessory/scarf/red = 100,
+ /obj/item/clothing/accessory/scarf/darkblue = 100,
+ /obj/item/clothing/accessory/scarf/purple = 100,
+ /obj/item/clothing/accessory/scarf/yellow = 100,
+ /obj/item/clothing/accessory/scarf/orange = 100,
+ /obj/item/clothing/accessory/scarf/lightblue = 100,
+ /obj/item/clothing/accessory/scarf/white = 100,
+ /obj/item/clothing/accessory/scarf/black = 100,
+ /obj/item/clothing/accessory/scarf/zebra = 100,
+ /obj/item/clothing/accessory/scarf/christmas = 100,
+ /obj/item/clothing/accessory/scarf/stripedred = 100,
+ /obj/item/clothing/accessory/scarf/stripedgreen = 100,
+ /obj/item/clothing/accessory/scarf/stripedblue = 100,
+ /obj/item/clothing/accessory/jacket = 100,
+ /obj/item/clothing/accessory/jacket/checkered = 100,
+ /obj/item/clothing/accessory/jacket/burgundy = 100,
+ /obj/item/clothing/accessory/jacket/navy = 100,
+ /obj/item/clothing/accessory/jacket/charcoal = 100,
+ /obj/item/clothing/accessory/vest = 100,
+ /obj/item/clothing/accessory/sweater = 100,
+ /obj/item/clothing/accessory/sweater/pink = 100,
+ /obj/item/clothing/accessory/sweater/mint = 100,
+ /obj/item/clothing/accessory/sweater/blue = 100,
+ /obj/item/clothing/accessory/sweater/heart = 100,
+ /obj/item/clothing/accessory/sweater/nt = 5,
+ /obj/item/clothing/accessory/sweater/keyhole = 100,
+ /obj/item/clothing/accessory/sweater/winterneck = 100,
+ /obj/item/clothing/accessory/sweater/uglyxmas = 5,
+ /obj/item/clothing/accessory/sweater/flowersweater = 100,
+ /obj/item/clothing/accessory/sweater/redneck = 100,
+ /obj/item/clothing/accessory/tie = 100,
+ /obj/item/clothing/accessory/tie/horrible = 100,
+ /obj/item/clothing/accessory/tie/white = 100,
+ /obj/item/clothing/accessory/tie/navy = 100,
+ /obj/item/clothing/accessory/tie/yellow = 100,
+ /obj/item/clothing/accessory/tie/darkgreen = 100,
+ /obj/item/clothing/accessory/tie/black = 100,
+ /obj/item/clothing/accessory/tie/red_long = 100,
+ /obj/item/clothing/accessory/tie/red_clip = 100,
+ /obj/item/clothing/accessory/tie/blue_long = 100,
+ /obj/item/clothing/accessory/tie/blue_clip = 100,
+ /obj/item/clothing/accessory/tie/red = 100,
+ /obj/item/clothing/accessory/wcoat = 100,
+ /obj/item/clothing/accessory/wcoat/red = 100,
+ /obj/item/clothing/accessory/wcoat/grey = 100,
+ /obj/item/clothing/accessory/wcoat/brown = 100,
+ /obj/item/clothing/accessory/wcoat/gentleman = 100,
+ /obj/item/clothing/accessory/wcoat/swvest = 100,
+ /obj/item/clothing/accessory/wcoat/swvest/blue = 100,
+ /obj/item/clothing/accessory/wcoat/swvest/red = 100,
+ /obj/item/weapon/storage/wallet = 100,
+ /obj/item/weapon/storage/wallet/poly = 100,
+ /obj/item/weapon/storage/wallet/womens = 100,
+ /obj/item/weapon/lipstick = 100,
+ /obj/item/weapon/lipstick/purple = 100,
+ /obj/item/weapon/lipstick/jade = 100,
+ /obj/item/weapon/lipstick/black = 100,
+ /obj/item/clothing/ears/earmuffs = 100,
+ /obj/item/clothing/ears/earmuffs/headphones = 100,
+ /obj/item/clothing/ears/earring/stud = 100,
+ /obj/item/clothing/ears/earring/dangle = 100,
+ /obj/item/clothing/gloves/ring/mariner = 100,
+ /obj/item/clothing/gloves/ring/engagement = 100,
+ /obj/item/clothing/gloves/ring/seal/signet = 100,
+ /obj/item/clothing/gloves/ring/seal/mason = 100,
+ /obj/item/clothing/gloves/ring/material/plastic = 100,
+ /obj/item/clothing/gloves/ring/material/steel = 100,
+ /obj/item/clothing/gloves/ring/material/gold = 500,
+ /obj/item/clothing/glasses/eyepatch = 100,
+ /obj/item/clothing/glasses/gglasses = 100,
+ /obj/item/clothing/glasses/regular/hipster = 100,
+ /obj/item/clothing/glasses/rimless = 100,
+ /obj/item/clothing/glasses/thin = 100,
+ /obj/item/clothing/glasses/monocle = 100,
+ /obj/item/clothing/glasses/goggles = 100,
+ /obj/item/clothing/glasses/fluff/spiffygogs = 100,
+ /obj/item/clothing/glasses/fakesunglasses = 100,
+ /obj/item/clothing/glasses/fakesunglasses/aviator = 100,
+ /obj/item/clothing/mask/bandana/blue = 100,
+ /obj/item/clothing/mask/bandana/gold = 100,
+ /obj/item/clothing/mask/bandana/green = 100,
+ /obj/item/clothing/mask/bandana/red = 100,
+ /obj/item/clothing/mask/surgical = 200)
+ premium = list(/obj/item/weapon/bedsheet/rainbow = 1)
+ contraband = list(/obj/item/clothing/mask/gas/clown_hat = 1)
+/obj/machinery/vending/loadout/clothing
+ name = "General Jump"
+ desc = "A special vendor using compressed matter cartridges to store large amounts of clothing."
+ product_ads = "Tired of your grey jumpsuit? Spruce yourself up!;We have the outfit for you!;Don't let that grey jumpsuit get you down, get a ROBUST outfit right now!;Using compressed matter catridges and VERY ETHICAL labor practices to bring YOU the clothing you crave!;Are you sure you want to go to work in THAT?;All of our wares have a whole TWO pockets!"
+ icon_state = "clothing"
+ icon_vend = "clothing-purchase"
+ vend_delay = 16
+ products = list(/obj/item/clothing/under/bathrobe = 5,
+ /obj/item/clothing/under/dress/black_corset = 5,
+ /obj/item/clothing/under/blazer = 5,
+ /obj/item/clothing/under/blazer/skirt = 5,
+ /obj/item/clothing/under/cheongsam = 5,
+ /obj/item/clothing/under/cheongsam/red = 5,
+ /obj/item/clothing/under/cheongsam/blue = 5,
+ /obj/item/clothing/under/cheongsam/black = 5,
+ /obj/item/clothing/under/cheongsam/darkred = 5,
+ /obj/item/clothing/under/cheongsam/green = 5,
+ /obj/item/clothing/under/cheongsam/purple = 5,
+ /obj/item/clothing/under/cheongsam/darkblue = 5,
+ /obj/item/clothing/under/croptop = 5,
+ /obj/item/clothing/under/croptop/red = 5,
+ /obj/item/clothing/under/croptop/grey = 5,
+ /obj/item/clothing/under/cuttop = 5,
+ /obj/item/clothing/under/cuttop/red = 5,
+ /obj/item/clothing/under/suit_jacket/female/skirt = 5,
+ /obj/item/clothing/under/dress/dress_fire = 5,
+ /obj/item/clothing/under/dress/flamenco = 5,
+ /obj/item/clothing/under/dress/flower_dress = 5,
+ /obj/item/clothing/under/fluff/gnshorts = 5,
+ /obj/item/clothing/under/color = 5,
+ /obj/item/clothing/under/color/aqua = 5,
+ /obj/item/clothing/under/color/black = 5,
+ /obj/item/clothing/under/color/blackf = 5,
+ /obj/item/clothing/under/color/blackjumpskirt = 5,
+ /obj/item/clothing/under/color/blue = 5,
+ /obj/item/clothing/under/color/brown = 5,
+ /obj/item/clothing/under/color/darkblue = 5,
+ /obj/item/clothing/under/color/darkred = 5,
+ /obj/item/clothing/under/color/green = 5,
+ /obj/item/clothing/under/color/grey = 5,
+ /obj/item/clothing/under/color/lightblue = 5,
+ /obj/item/clothing/under/color/lightbrown = 5,
+ /obj/item/clothing/under/color/lightgreen = 5,
+ /obj/item/clothing/under/color/lightpurple = 5,
+ /obj/item/clothing/under/color/lightred = 5,
+ /obj/item/clothing/under/color/orange = 5,
+ /obj/item/clothing/under/color/pink = 5,
+ /obj/item/clothing/under/color/prison = 5,
+ /obj/item/clothing/under/color/ranger = 5,
+ /obj/item/clothing/under/color/red = 5,
+ /obj/item/clothing/under/color/white = 5,
+ /obj/item/clothing/under/color/yellow = 5,
+ /obj/item/clothing/under/color/yellowgreen = 5,
+ /obj/item/clothing/under/aether = 5,
+ /obj/item/clothing/under/focal = 5,
+ /obj/item/clothing/under/hephaestus = 5,
+ /obj/item/clothing/under/wardt = 5,
+ /obj/item/clothing/under/kilt = 5,
+ /obj/item/clothing/under/fluff/latexmaid = 5,
+ /obj/item/clothing/under/dress/lilacdress = 5,
+ /obj/item/clothing/under/dress/white2 = 5,
+ /obj/item/clothing/under/dress/white4 = 5,
+ /obj/item/clothing/under/dress/maid = 5,
+ /obj/item/clothing/under/dress/maid/sexy = 5,
+ /obj/item/clothing/under/dress/maid/janitor = 5,
+ /obj/item/clothing/under/moderncoat = 5,
+ /obj/item/clothing/under/permit = 5,
+ /obj/item/clothing/under/oldwoman = 5,
+ /obj/item/clothing/under/frontier = 5,
+ /obj/item/clothing/under/mbill = 5,
+ /obj/item/clothing/under/pants/baggy/ = 5,
+ /obj/item/clothing/under/pants/baggy/classicjeans = 5,
+ /obj/item/clothing/under/pants/baggy/mustangjeans = 5,
+ /obj/item/clothing/under/pants/baggy/blackjeans = 5,
+ /obj/item/clothing/under/pants/baggy/greyjeans = 5,
+ /obj/item/clothing/under/pants/baggy/youngfolksjeans = 5,
+ /obj/item/clothing/under/pants/baggy/white = 5,
+ /obj/item/clothing/under/pants/baggy/red = 5,
+ /obj/item/clothing/under/pants/baggy/black = 5,
+ /obj/item/clothing/under/pants/baggy/tan = 5,
+ /obj/item/clothing/under/pants/baggy/track = 5,
+ /obj/item/clothing/under/pants/baggy/khaki = 5,
+ /obj/item/clothing/under/pants/baggy/camo = 5,
+ /obj/item/clothing/under/pants/utility/ = 5,
+ /obj/item/clothing/under/pants/utility/orange = 5,
+ /obj/item/clothing/under/pants/utility/blue = 5,
+ /obj/item/clothing/under/pants/utility/white = 5,
+ /obj/item/clothing/under/pants/utility/red = 5,
+ /obj/item/clothing/under/pants/chaps = 5,
+ /obj/item/clothing/under/pants/chaps/black = 5,
+ /obj/item/clothing/under/pants/track = 5,
+ /obj/item/clothing/under/pants/track/red = 5,
+ /obj/item/clothing/under/pants/track/white = 5,
+ /obj/item/clothing/under/pants/track/green = 5,
+ /obj/item/clothing/under/pants/track/blue = 5,
+ /obj/item/clothing/under/pants/yogapants = 5,
+ /obj/item/clothing/under/ascetic = 5,
+ /obj/item/clothing/under/dress/white3 = 5,
+ /obj/item/clothing/under/skirt/pleated = 5,
+ /obj/item/clothing/under/dress/darkred = 5,
+ /obj/item/clothing/under/dress/redeveninggown = 5,
+ /obj/item/clothing/under/dress/red_swept_dress = 5,
+ /obj/item/clothing/under/dress/sailordress = 5,
+ /obj/item/clothing/under/dress/sari = 5,
+ /obj/item/clothing/under/dress/sari/green = 5,
+ /obj/item/clothing/under/shorts/red = 5,
+ /obj/item/clothing/under/shorts/green = 5,
+ /obj/item/clothing/under/shorts/blue = 5,
+ /obj/item/clothing/under/shorts/black = 5,
+ /obj/item/clothing/under/shorts/grey = 5,
+ /obj/item/clothing/under/shorts/white = 5,
+ /obj/item/clothing/under/shorts/jeans = 5,
+ /obj/item/clothing/under/shorts/jeans/ = 5,
+ /obj/item/clothing/under/shorts/jeans/classic = 5,
+ /obj/item/clothing/under/shorts/jeans/mustang = 5,
+ /obj/item/clothing/under/shorts/jeans/youngfolks = 5,
+ /obj/item/clothing/under/shorts/jeans/black = 5,
+ /obj/item/clothing/under/shorts/jeans/grey = 5,
+ /obj/item/clothing/under/shorts/khaki/ = 5,
+ /obj/item/clothing/under/skirt/loincloth = 5,
+ /obj/item/clothing/under/skirt/khaki = 5,
+ /obj/item/clothing/under/skirt/blue = 5,
+ /obj/item/clothing/under/skirt/red = 5,
+ /obj/item/clothing/under/skirt/denim = 5,
+ /obj/item/clothing/under/skirt/pleated = 5,
+ /obj/item/clothing/under/skirt/outfit/plaid_blue = 5,
+ /obj/item/clothing/under/skirt/outfit/plaid_red = 5,
+ /obj/item/clothing/under/skirt/outfit/plaid_purple = 5,
+ /obj/item/clothing/under/overalls/sleek = 5,
+ /obj/item/clothing/under/sl_suit = 5,
+ /obj/item/clothing/under/gentlesuit = 5,
+ /obj/item/clothing/under/gentlesuit/skirt = 5,
+ /obj/item/clothing/under/suit_jacket = 5,
+ /obj/item/clothing/under/suit_jacket/really_black/skirt = 5,
+ /obj/item/clothing/under/suit_jacket/really_black = 5,
+ /obj/item/clothing/under/suit_jacket/female/skirt = 5,
+ /obj/item/clothing/under/suit_jacket/female/ = 5,
+ /obj/item/clothing/under/suit_jacket/red = 5,
+ /obj/item/clothing/under/suit_jacket/red/skirt = 5,
+ /obj/item/clothing/under/suit_jacket/charcoal = 5,
+ /obj/item/clothing/under/suit_jacket/charcoal/skirt = 5,
+ /obj/item/clothing/under/suit_jacket/navy = 5,
+ /obj/item/clothing/under/suit_jacket/navy/skirt = 5,
+ /obj/item/clothing/under/suit_jacket/burgundy = 5,
+ /obj/item/clothing/under/suit_jacket/burgundy/skirt = 5,
+ /obj/item/clothing/under/suit_jacket/checkered = 5,
+ /obj/item/clothing/under/suit_jacket/checkered/skirt = 5,
+ /obj/item/clothing/under/suit_jacket/tan = 5,
+ /obj/item/clothing/under/suit_jacket/tan/skirt = 5,
+ /obj/item/clothing/under/scratch = 5,
+ /obj/item/clothing/under/scratch/skirt = 5,
+ /obj/item/clothing/under/sundress = 5,
+ /obj/item/clothing/under/sundress_white = 5,
+ /obj/item/clothing/under/rank/psych/turtleneck/sweater = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/blue = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/purple = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/green = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/red = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/white = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/earth = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/science = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/security = 5,
+ /obj/item/weapon/storage/box/fluff/swimsuit/medical = 5,
+ /obj/item/clothing/under/utility = 5,
+ /obj/item/clothing/under/utility/grey = 5,
+ /obj/item/clothing/under/utility/blue = 5,
+ /obj/item/clothing/under/fluff/v_nanovest = 5,
+ /obj/item/clothing/under/dress/westernbustle = 5,
+ /obj/item/clothing/under/wedding/bride_white = 5,
+ /obj/item/weapon/storage/backpack/ = 5,
+ /obj/item/weapon/storage/backpack/messenger = 5,
+ /obj/item/weapon/storage/backpack/satchel = 5)
+ prices = list(/obj/item/clothing/under/bathrobe = 100,
+ /obj/item/clothing/under/dress/black_corset = 100,
+ /obj/item/clothing/under/blazer = 100,
+ /obj/item/clothing/under/blazer/skirt = 100,
+ /obj/item/clothing/under/cheongsam = 100,
+ /obj/item/clothing/under/cheongsam/red = 100,
+ /obj/item/clothing/under/cheongsam/blue = 100,
+ /obj/item/clothing/under/cheongsam/black = 100,
+ /obj/item/clothing/under/cheongsam/darkred = 100,
+ /obj/item/clothing/under/cheongsam/green = 100,
+ /obj/item/clothing/under/cheongsam/purple = 100,
+ /obj/item/clothing/under/cheongsam/darkblue = 100,
+ /obj/item/clothing/under/croptop = 100,
+ /obj/item/clothing/under/croptop/red = 100,
+ /obj/item/clothing/under/croptop/grey = 100,
+ /obj/item/clothing/under/cuttop = 100,
+ /obj/item/clothing/under/cuttop/red = 100,
+ /obj/item/clothing/under/suit_jacket/female/skirt = 100,
+ /obj/item/clothing/under/dress/dress_fire = 100,
+ /obj/item/clothing/under/dress/flamenco = 100,
+ /obj/item/clothing/under/dress/flower_dress = 100,
+ /obj/item/clothing/under/fluff/gnshorts = 100,
+ /obj/item/clothing/under/color = 100,
+ /obj/item/clothing/under/color/aqua = 100,
+ /obj/item/clothing/under/color/black = 100,
+ /obj/item/clothing/under/color/blackf = 100,
+ /obj/item/clothing/under/color/blackjumpskirt = 100,
+ /obj/item/clothing/under/color/blue = 100,
+ /obj/item/clothing/under/color/brown = 100,
+ /obj/item/clothing/under/color/darkblue = 100,
+ /obj/item/clothing/under/color/darkred = 100,
+ /obj/item/clothing/under/color/green = 100,
+ /obj/item/clothing/under/color/grey = 100,
+ /obj/item/clothing/under/color/lightblue = 100,
+ /obj/item/clothing/under/color/lightbrown = 100,
+ /obj/item/clothing/under/color/lightgreen = 100,
+ /obj/item/clothing/under/color/lightpurple = 100,
+ /obj/item/clothing/under/color/lightred = 100,
+ /obj/item/clothing/under/color/orange = 100,
+ /obj/item/clothing/under/color/pink = 100,
+ /obj/item/clothing/under/color/prison = 100,
+ /obj/item/clothing/under/color/ranger = 100,
+ /obj/item/clothing/under/color/red = 100,
+ /obj/item/clothing/under/color/white = 100,
+ /obj/item/clothing/under/color/yellow = 100,
+ /obj/item/clothing/under/color/yellowgreen = 100,
+ /obj/item/clothing/under/aether = 100,
+ /obj/item/clothing/under/focal = 100,
+ /obj/item/clothing/under/hephaestus = 100,
+ /obj/item/clothing/under/wardt = 100,
+ /obj/item/clothing/under/kilt = 100,
+ /obj/item/clothing/under/fluff/latexmaid = 100,
+ /obj/item/clothing/under/dress/lilacdress = 100,
+ /obj/item/clothing/under/dress/white2 = 100,
+ /obj/item/clothing/under/dress/white4 = 100,
+ /obj/item/clothing/under/dress/maid = 100,
+ /obj/item/clothing/under/dress/maid/sexy = 100,
+ /obj/item/clothing/under/dress/maid/janitor = 100,
+ /obj/item/clothing/under/moderncoat = 100,
+ /obj/item/clothing/under/permit = 100,
+ /obj/item/clothing/under/oldwoman = 100,
+ /obj/item/clothing/under/frontier = 100,
+ /obj/item/clothing/under/mbill = 100,
+ /obj/item/clothing/under/pants/baggy/ = 100,
+ /obj/item/clothing/under/pants/baggy/classicjeans = 100,
+ /obj/item/clothing/under/pants/baggy/mustangjeans = 100,
+ /obj/item/clothing/under/pants/baggy/blackjeans = 100,
+ /obj/item/clothing/under/pants/baggy/greyjeans = 100,
+ /obj/item/clothing/under/pants/baggy/youngfolksjeans = 100,
+ /obj/item/clothing/under/pants/baggy/white = 100,
+ /obj/item/clothing/under/pants/baggy/red = 100,
+ /obj/item/clothing/under/pants/baggy/black = 100,
+ /obj/item/clothing/under/pants/baggy/tan = 100,
+ /obj/item/clothing/under/pants/baggy/track = 100,
+ /obj/item/clothing/under/pants/baggy/khaki = 100,
+ /obj/item/clothing/under/pants/baggy/camo = 100,
+ /obj/item/clothing/under/pants/utility/ = 100,
+ /obj/item/clothing/under/pants/utility/orange = 100,
+ /obj/item/clothing/under/pants/utility/blue = 100,
+ /obj/item/clothing/under/pants/utility/white = 100,
+ /obj/item/clothing/under/pants/utility/red = 100,
+ /obj/item/clothing/under/pants/chaps = 100,
+ /obj/item/clothing/under/pants/chaps/black = 100,
+ /obj/item/clothing/under/pants/track = 100,
+ /obj/item/clothing/under/pants/track/red = 100,
+ /obj/item/clothing/under/pants/track/white = 100,
+ /obj/item/clothing/under/pants/track/green = 100,
+ /obj/item/clothing/under/pants/track/blue = 100,
+ /obj/item/clothing/under/pants/yogapants = 100,
+ /obj/item/clothing/under/ascetic = 100,
+ /obj/item/clothing/under/dress/white3 = 100,
+ /obj/item/clothing/under/skirt/pleated = 100,
+ /obj/item/clothing/under/dress/darkred = 100,
+ /obj/item/clothing/under/dress/redeveninggown = 100,
+ /obj/item/clothing/under/dress/red_swept_dress = 100,
+ /obj/item/clothing/under/dress/sailordress = 100,
+ /obj/item/clothing/under/dress/sari = 100,
+ /obj/item/clothing/under/dress/sari/green = 100,
+ /obj/item/clothing/under/shorts/red = 100,
+ /obj/item/clothing/under/shorts/green = 100,
+ /obj/item/clothing/under/shorts/blue = 100,
+ /obj/item/clothing/under/shorts/black = 100,
+ /obj/item/clothing/under/shorts/grey = 100,
+ /obj/item/clothing/under/shorts/white = 100,
+ /obj/item/clothing/under/shorts/jeans = 100,
+ /obj/item/clothing/under/shorts/jeans/ = 100,
+ /obj/item/clothing/under/shorts/jeans/classic = 100,
+ /obj/item/clothing/under/shorts/jeans/mustang = 100,
+ /obj/item/clothing/under/shorts/jeans/youngfolks = 100,
+ /obj/item/clothing/under/shorts/jeans/black = 100,
+ /obj/item/clothing/under/shorts/jeans/grey = 100,
+ /obj/item/clothing/under/shorts/khaki/ = 100,
+ /obj/item/clothing/under/skirt/loincloth = 100,
+ /obj/item/clothing/under/skirt/khaki = 100,
+ /obj/item/clothing/under/skirt/blue = 100,
+ /obj/item/clothing/under/skirt/red = 100,
+ /obj/item/clothing/under/skirt/denim = 100,
+ /obj/item/clothing/under/skirt/pleated = 100,
+ /obj/item/clothing/under/skirt/outfit/plaid_blue = 100,
+ /obj/item/clothing/under/skirt/outfit/plaid_red = 100,
+ /obj/item/clothing/under/skirt/outfit/plaid_purple = 100,
+ /obj/item/clothing/under/overalls/sleek = 100,
+ /obj/item/clothing/under/sl_suit = 100,
+ /obj/item/clothing/under/gentlesuit = 100,
+ /obj/item/clothing/under/gentlesuit/skirt = 100,
+ /obj/item/clothing/under/suit_jacket = 100,
+ /obj/item/clothing/under/suit_jacket/really_black/skirt = 100,
+ /obj/item/clothing/under/suit_jacket/really_black = 100,
+ /obj/item/clothing/under/suit_jacket/female/skirt = 100,
+ /obj/item/clothing/under/suit_jacket/female/ = 100,
+ /obj/item/clothing/under/suit_jacket/red = 100,
+ /obj/item/clothing/under/suit_jacket/red/skirt = 100,
+ /obj/item/clothing/under/suit_jacket/charcoal = 100,
+ /obj/item/clothing/under/suit_jacket/charcoal/skirt = 100,
+ /obj/item/clothing/under/suit_jacket/navy = 100,
+ /obj/item/clothing/under/suit_jacket/navy/skirt = 100,
+ /obj/item/clothing/under/suit_jacket/burgundy = 100,
+ /obj/item/clothing/under/suit_jacket/burgundy/skirt = 100,
+ /obj/item/clothing/under/suit_jacket/checkered = 100,
+ /obj/item/clothing/under/suit_jacket/checkered/skirt = 100,
+ /obj/item/clothing/under/suit_jacket/tan = 100,
+ /obj/item/clothing/under/suit_jacket/tan/skirt = 100,
+ /obj/item/clothing/under/scratch = 100,
+ /obj/item/clothing/under/scratch/skirt = 100,
+ /obj/item/clothing/under/sundress = 100,
+ /obj/item/clothing/under/sundress_white = 100,
+ /obj/item/clothing/under/rank/psych/turtleneck/sweater = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/blue = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/purple = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/green = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/red = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/white = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/earth = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/science = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/security = 100,
+ /obj/item/weapon/storage/box/fluff/swimsuit/medical = 100,
+ /obj/item/clothing/under/utility = 100,
+ /obj/item/clothing/under/utility/grey = 100,
+ /obj/item/clothing/under/utility/blue = 100,
+ /obj/item/clothing/under/fluff/v_nanovest = 100,
+ /obj/item/clothing/under/dress/westernbustle = 100,
+ /obj/item/clothing/under/wedding/bride_white = 100,
+ /obj/item/weapon/storage/backpack/ = 100,
+ /obj/item/weapon/storage/backpack/messenger = 100,
+ /obj/item/weapon/storage/backpack/satchel = 100)
+ premium = list(/obj/item/clothing/under/color/rainbow = 1)
+ contraband = list(/obj/item/clothing/under/rank/clown = 1)
+/obj/machinery/vending/loadout/gadget
+ name = "Chips Co."
+ desc = "A special vendor for devices and gadgets."
+ product_ads = "You can't RESIST our great deals!;Feeling disconnected? We have a gadget for you!;You know you have the capacity to buy our capacitors!;FILL THAT HOLE IN YOUR HEART WITH OUR PLASTIC DISTRACTIONS!!!;Devices for everyone! Chips Co.!;ROBUST INVENTORY, GREAT PRICES! ;DON'T FORGET THE oyPAD 13s PRO! ON SALE NOW, ONLY ONE THOUSAND THALERS!"
+ icon_state = "gadgets"
+ icon_vend = "gadgets-purchase"
+ vend_delay = 11
+ products = list(/obj/item/clothing/suit/circuitry = 1,
+ /obj/item/clothing/head/circuitry = 1,
+ /obj/item/clothing/shoes/circuitry = 1,
+ /obj/item/clothing/gloves/circuitry = 1,
+ /obj/item/clothing/under/circuitry = 1,
+ /obj/item/clothing/glasses/circuitry = 1,
+ /obj/item/clothing/ears/circuitry = 1,
+ /obj/item/device/text_to_speech = 5,
+ /obj/item/device/paicard = 5,
+ /obj/item/device/communicator = 10,
+ /obj/item/device/communicator/watch = 10,
+ /obj/item/device/radio = 10,
+ /obj/item/device/camera = 5,
+ /obj/item/device/taperecorder = 5,
+ /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 5,
+ /obj/item/device/pda = 10,
+ /obj/item/device/radio/headset = 10,
+ /obj/item/device/flashlight = 5,
+ /obj/item/device/laser_pointer = 3,
+ /obj/item/clothing/glasses/omnihud = 10)
+ prices = list(/obj/item/clothing/suit/circuitry = 100,
+ /obj/item/clothing/head/circuitry = 100,
+ /obj/item/clothing/shoes/circuitry = 100,
+ /obj/item/clothing/gloves/circuitry = 100,
+ /obj/item/clothing/under/circuitry = 100,
+ /obj/item/clothing/glasses/circuitry = 100,
+ /obj/item/clothing/ears/circuitry = 100,
+ /obj/item/device/text_to_speech = 300,
+ /obj/item/device/paicard = 100,
+ /obj/item/device/communicator = 100,
+ /obj/item/device/communicator/watch = 100,
+ /obj/item/device/radio = 100,
+ /obj/item/device/camera = 100,
+ /obj/item/device/taperecorder = 100,
+ /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 1000,
+ /obj/item/device/pda = 50,
+ /obj/item/device/radio/headset = 50,
+ /obj/item/device/flashlight = 100,
+ /obj/item/device/laser_pointer = 200,
+ /obj/item/clothing/glasses/omnihud = 100)
+ premium = list(/obj/item/device/perfect_tele/one_beacon = 1)
+ contraband = list(/obj/item/weapon/disk/nifsoft/compliance = 1)
+/obj/machinery/vending/loadout/loadout_misc
+ name = "Bits and Bobs"
+ desc = "A special vendor for things and also stuff!"
+ product_ads = "You never know when you might need an umbrella.;Hey kid... want some cardemon cards?;Miscellaneous for your miscellaneous heart.;Who's bob? Wouldn't you like to know.;I'm sorry there's no grappling hooks in our umbrellas.;We sell things AND stuff."
+ icon_state = "loadout_misc"
+ products = list(/obj/item/weapon/cane = 5,
+ /obj/item/weapon/pack/cardemon = 25,
+ /obj/item/weapon/deck/holder = 5,
+ /obj/item/weapon/deck/cah = 5,
+ /obj/item/weapon/deck/cah/black = 5,
+ /obj/item/weapon/deck/tarot = 5,
+ /obj/item/weapon/deck/cards = 5,
+ /obj/item/weapon/pack/spaceball = 10,
+ /obj/item/weapon/storage/pill_bottle/dice = 5,
+ /obj/item/weapon/storage/pill_bottle/dice_nerd = 5,
+ /obj/item/weapon/melee/umbrella/random = 10)
+ prices = list(/obj/item/weapon/cane = 100,
+ /obj/item/weapon/pack/cardemon = 100,
+ /obj/item/weapon/deck/holder = 100,
+ /obj/item/weapon/deck/cah = 100,
+ /obj/item/weapon/deck/cah/black = 100,
+ /obj/item/weapon/deck/tarot = 100,
+ /obj/item/weapon/deck/cards = 100,
+ /obj/item/weapon/pack/spaceball = 100,
+ /obj/item/weapon/storage/pill_bottle/dice = 100,
+ /obj/item/weapon/storage/pill_bottle/dice_nerd = 100,
+ /obj/item/weapon/melee/umbrella/random = 100)
+ premium = list(/obj/item/toy/bosunwhistle = 1)
+ contraband = list(/obj/item/toy/katana = 1)
+/obj/machinery/vending/loadout/overwear
+ name = "Big D's Best"
+ desc = "A special vendor using compressed matter cartridges to store large amounts of overwear!"
+ product_ads = "Dress your best! It's what big D would want.;Overwear for all occasions!;Big D has what you need if what you need is some form of jacket!;Need a new hoodie? Bid D has you covered.;Big D says you need a new suit!;Big D smiles when he sees you in one of his coats!"
+ icon_state = "suit"
+ icon_vend = "suit-purchase"
+ vend_delay = 16
+ products = list(/obj/item/clothing/suit/storage/apron = 5,
+ /obj/item/clothing/suit/storage/flannel/aqua = 5,
+ /obj/item/clothing/suit/storage/toggle/bomber = 5,
+ /obj/item/clothing/suit/storage/bomber/alt = 5,
+ /obj/item/clothing/suit/storage/flannel/brown = 5,
+ /obj/item/clothing/suit/storage/toggle/cardigan = 5,
+ /obj/item/clothing/accessory/poncho/roles/cloak/custom = 5,
+ /obj/item/clothing/suit/storage/duster = 5,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket = 5,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 5,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 5,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 5,
+ /obj/item/clothing/suit/storage/fluff/gntop = 5,
+ /obj/item/clothing/suit/greatcoat = 5,
+ /obj/item/clothing/suit/storage/flannel = 5,
+ /obj/item/clothing/suit/storage/greyjacket = 5,
+ /obj/item/clothing/suit/storage/hazardvest = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/black = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/red = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/blue = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/green = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/orange = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/cti = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/mu = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/nt = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/smw = 5,
+ /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 5,
+ /obj/item/clothing/suit/storage/fluff/jacket/field = 5,
+ /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 5,
+ /obj/item/clothing/suit/storage/fluff/jacket/air_force = 5,
+ /obj/item/clothing/suit/storage/fluff/jacket/navy = 5,
+ /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 5,
+ /obj/item/clothing/suit/kamishimo = 5,
+ /obj/item/clothing/suit/kimono = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat/blue = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat/green = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat/orange = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat/pink = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat/red = 5,
+ /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 5,
+ /obj/item/clothing/suit/leathercoat = 5,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket = 5,
+ /obj/item/clothing/suit/storage/leather_jacket_alt = 5,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket = 5,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 5,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 5,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 5,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 5,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 5,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 5,
+ /obj/item/clothing/suit/storage/miljacket = 5,
+ /obj/item/clothing/suit/storage/miljacket/alt = 5,
+ /obj/item/clothing/suit/storage/miljacket/green = 5,
+ /obj/item/clothing/suit/storage/apron/overalls = 5,
+ /obj/item/clothing/suit/storage/toggle/peacoat = 5,
+ /obj/item/clothing/accessory/poncho = 5,
+ /obj/item/clothing/accessory/poncho/green = 5,
+ /obj/item/clothing/accessory/poncho/red = 5,
+ /obj/item/clothing/accessory/poncho/purple = 5,
+ /obj/item/clothing/accessory/poncho/blue = 5,
+ /obj/item/clothing/suit/jacket/puffer = 5,
+ /obj/item/clothing/suit/jacket/puffer/vest = 5,
+ /obj/item/clothing/suit/storage/flannel/red = 5,
+ /obj/item/clothing/suit/unathi/robe = 5,
+ /obj/item/clothing/suit/storage/snowsuit = 5,
+ /obj/item/clothing/suit/storage/toggle/internalaffairs = 5,
+ /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 5,
+ /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 5,
+ /obj/item/clothing/suit/suspenders = 5,
+ /obj/item/clothing/suit/storage/toggle/track = 5,
+ /obj/item/clothing/suit/storage/toggle/track/blue = 5,
+ /obj/item/clothing/suit/storage/toggle/track/green = 5,
+ /obj/item/clothing/suit/storage/toggle/track/red = 5,
+ /obj/item/clothing/suit/storage/toggle/track/white = 5,
+ /obj/item/clothing/suit/storage/trench = 5,
+ /obj/item/clothing/suit/storage/trench/grey = 5,
+ /obj/item/clothing/suit/varsity = 5,
+ /obj/item/clothing/suit/varsity/red = 5,
+ /obj/item/clothing/suit/varsity/purple = 5,
+ /obj/item/clothing/suit/varsity/green = 5,
+ /obj/item/clothing/suit/varsity/blue = 5,
+ /obj/item/clothing/suit/varsity/brown = 5,
+ /obj/item/clothing/suit/storage/hooded/wintercoat = 5,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 5)
+ prices = list(/obj/item/clothing/suit/storage/apron = 200,
+ /obj/item/clothing/suit/storage/flannel/aqua = 200,
+ /obj/item/clothing/suit/storage/toggle/bomber = 200,
+ /obj/item/clothing/suit/storage/bomber/alt = 200,
+ /obj/item/clothing/suit/storage/flannel/brown = 200,
+ /obj/item/clothing/suit/storage/toggle/cardigan = 200,
+ /obj/item/clothing/accessory/poncho/roles/cloak/custom = 200,
+ /obj/item/clothing/suit/storage/duster = 200,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket = 200,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 200,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 200,
+ /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 200,
+ /obj/item/clothing/suit/storage/fluff/gntop = 200,
+ /obj/item/clothing/suit/greatcoat = 200,
+ /obj/item/clothing/suit/storage/flannel = 200,
+ /obj/item/clothing/suit/storage/greyjacket = 200,
+ /obj/item/clothing/suit/storage/hazardvest = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/black = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/red = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/blue = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/green = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/orange = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/cti = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/mu = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/nt = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/smw = 200,
+ /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 200,
+ /obj/item/clothing/suit/storage/fluff/jacket/field = 200,
+ /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 200,
+ /obj/item/clothing/suit/storage/fluff/jacket/air_force = 200,
+ /obj/item/clothing/suit/storage/fluff/jacket/navy = 200,
+ /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 200,
+ /obj/item/clothing/suit/kamishimo = 200,
+ /obj/item/clothing/suit/kimono = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat/blue = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat/green = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat/orange = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat/pink = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat/red = 200,
+ /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 200,
+ /obj/item/clothing/suit/leathercoat = 200,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket = 200,
+ /obj/item/clothing/suit/storage/leather_jacket_alt = 200,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket = 200,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 200,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 200,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 200,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 200,
+ /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 200,
+ /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 200,
+ /obj/item/clothing/suit/storage/miljacket = 200,
+ /obj/item/clothing/suit/storage/miljacket/alt = 200,
+ /obj/item/clothing/suit/storage/miljacket/green = 200,
+ /obj/item/clothing/suit/storage/apron/overalls = 100,
+ /obj/item/clothing/suit/storage/toggle/peacoat = 200,
+ /obj/item/clothing/accessory/poncho = 100,
+ /obj/item/clothing/accessory/poncho/green = 100,
+ /obj/item/clothing/accessory/poncho/red = 100,
+ /obj/item/clothing/accessory/poncho/purple = 100,
+ /obj/item/clothing/accessory/poncho/blue = 100,
+ /obj/item/clothing/suit/jacket/puffer = 200,
+ /obj/item/clothing/suit/jacket/puffer/vest = 200,
+ /obj/item/clothing/suit/storage/flannel/red = 200,
+ /obj/item/clothing/suit/unathi/robe = 100,
+ /obj/item/clothing/suit/storage/snowsuit = 200,
+ /obj/item/clothing/suit/storage/toggle/internalaffairs = 200,
+ /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 200,
+ /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 200,
+ /obj/item/clothing/suit/suspenders = 200,
+ /obj/item/clothing/suit/storage/toggle/track = 200,
+ /obj/item/clothing/suit/storage/toggle/track/blue = 200,
+ /obj/item/clothing/suit/storage/toggle/track/green = 200,
+ /obj/item/clothing/suit/storage/toggle/track/red = 200,
+ /obj/item/clothing/suit/storage/toggle/track/white = 200,
+ /obj/item/clothing/suit/storage/trench = 200,
+ /obj/item/clothing/suit/storage/trench/grey = 200,
+ /obj/item/clothing/suit/varsity = 200,
+ /obj/item/clothing/suit/varsity/red = 200,
+ /obj/item/clothing/suit/varsity/purple = 200,
+ /obj/item/clothing/suit/varsity/green = 200,
+ /obj/item/clothing/suit/varsity/blue = 200,
+ /obj/item/clothing/suit/varsity/brown = 200,
+ /obj/item/clothing/suit/storage/hooded/wintercoat = 200,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 200)
+ premium = list(/obj/item/clothing/suit/imperium_monk = 3)
+ contraband = list(/obj/item/toy/katana = 1)
+/obj/machinery/vending/loadout/costume
+ name = "Thespian's Delight"
+ desc = "Sometimes nerds need costumes!"
+ product_ads = "Don't let your art be stifled!;Remember, practice makes perfect!;Break a leg!;Don't make me get the cane!;Thespian's Delight entering stage right!;Costumes for your acting needs!"
+ icon_state = "Theater_b"
+ products = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 3,
+ /obj/item/clothing/suit/storage/hooded/carp_costume = 3,
+ /obj/item/clothing/suit/chickensuit = 3,
+ /obj/item/clothing/head/chicken = 3,
+ /obj/item/clothing/head/helmet/gladiator = 3,
+ /obj/item/clothing/under/gladiator = 3,
+ /obj/item/clothing/suit/storage/toggle/labcoat/mad = 3,
+ /obj/item/clothing/under/gimmick/rank/captain/suit = 3,
+ /obj/item/clothing/glasses/gglasses = 3,
+ /obj/item/clothing/head/flatcap = 3,
+ /obj/item/clothing/shoes/boots/jackboots = 3,
+ /obj/item/clothing/under/schoolgirl = 3,
+ /obj/item/clothing/head/kitty = 3,
+ /obj/item/clothing/glasses/sunglasses/blindfold = 3,
+ /obj/item/clothing/head/beret = 3,
+ /obj/item/clothing/under/skirt = 3,
+ /obj/item/clothing/under/suit_jacket = 3,
+ /obj/item/clothing/head/that = 3,
+ /obj/item/clothing/accessory/wcoat = 3,
+ /obj/item/clothing/under/scratch = 3,
+ /obj/item/clothing/shoes/white = 3,
+ /obj/item/clothing/gloves/white = 3,
+ /obj/item/clothing/under/kilt = 3,
+ /obj/item/clothing/glasses/monocle = 3,
+ /obj/item/clothing/under/sl_suit = 3,
+ /obj/item/clothing/mask/fakemoustache = 3,
+ /obj/item/weapon/cane = 3,
+ /obj/item/clothing/head/bowler = 3,
+ /obj/item/clothing/head/plaguedoctorhat = 3,
+ /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 3,
+ /obj/item/clothing/mask/gas/plaguedoctor/fluff = 3,
+ /obj/item/clothing/under/owl = 3,
+ /obj/item/clothing/mask/gas/owl_mask = 3,
+ /obj/item/clothing/under/waiter = 3,
+ /obj/item/clothing/suit/storage/apron = 3,
+ /obj/item/clothing/under/pirate = 3,
+ /obj/item/clothing/head/pirate = 3,
+ /obj/item/clothing/suit/pirate = 3,
+ /obj/item/clothing/glasses/eyepatch = 3,
+ /obj/item/clothing/head/ushanka = 3,
+ /obj/item/clothing/under/soviet = 3,
+ /obj/item/clothing/suit/imperium_monk = 1,
+ /obj/item/clothing/suit/holidaypriest = 3,
+ /obj/item/clothing/head/witchwig = 3,
+ /obj/item/clothing/under/sundress = 3,
+ /obj/item/weapon/staff/broom = 3,
+ /obj/item/clothing/suit/wizrobe/fake = 3,
+ /obj/item/clothing/head/wizard/fake = 3,
+ /obj/item/weapon/staff = 3,
+ /obj/item/clothing/mask/gas/sexyclown = 3,
+ /obj/item/clothing/under/sexyclown = 3,
+ /obj/item/clothing/mask/gas/sexymime = 3,
+ /obj/item/clothing/under/sexymime = 3)
+ prices = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 200,
+ /obj/item/clothing/suit/storage/hooded/carp_costume = 200,
+ /obj/item/clothing/suit/chickensuit = 200,
+ /obj/item/clothing/head/chicken = 200,
+ /obj/item/clothing/head/helmet/gladiator = 300,
+ /obj/item/clothing/under/gladiator = 500,
+ /obj/item/clothing/suit/storage/toggle/labcoat/mad = 200,
+ /obj/item/clothing/under/gimmick/rank/captain/suit = 200,
+ /obj/item/clothing/glasses/gglasses = 200,
+ /obj/item/clothing/head/flatcap = 200,
+ /obj/item/clothing/shoes/boots/jackboots = 200,
+ /obj/item/clothing/under/schoolgirl = 200,
+ /obj/item/clothing/head/kitty = 200,
+ /obj/item/clothing/glasses/sunglasses/blindfold = 200,
+ /obj/item/clothing/head/beret = 200,
+ /obj/item/clothing/under/skirt = 200,
+ /obj/item/clothing/under/suit_jacket = 200,
+ /obj/item/clothing/head/that = 200,
+ /obj/item/clothing/accessory/wcoat = 200,
+ /obj/item/clothing/under/scratch = 200,
+ /obj/item/clothing/shoes/white = 200,
+ /obj/item/clothing/gloves/white = 200,
+ /obj/item/clothing/under/kilt = 200,
+ /obj/item/clothing/glasses/monocle = 400,
+ /obj/item/clothing/under/sl_suit = 200,
+ /obj/item/clothing/mask/fakemoustache = 200,
+ /obj/item/weapon/cane = 300,
+ /obj/item/clothing/head/bowler = 200,
+ /obj/item/clothing/head/plaguedoctorhat = 300,
+ /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 300,
+ /obj/item/clothing/mask/gas/plaguedoctor/fluff = 600,
+ /obj/item/clothing/under/owl = 400,
+ /obj/item/clothing/mask/gas/owl_mask = 400,
+ /obj/item/clothing/under/waiter = 200,
+ /obj/item/clothing/suit/storage/apron = 200,
+ /obj/item/clothing/under/pirate = 300,
+ /obj/item/clothing/head/pirate = 400,
+ /obj/item/clothing/suit/pirate = 600,
+ /obj/item/clothing/glasses/eyepatch = 200,
+ /obj/item/clothing/head/ushanka = 200,
+ /obj/item/clothing/under/soviet = 200,
+ /obj/item/clothing/suit/imperium_monk = 2000,
+ /obj/item/clothing/suit/holidaypriest = 200,
+ /obj/item/clothing/head/witchwig = 200,
+ /obj/item/clothing/under/sundress = 200,
+ /obj/item/weapon/staff/broom = 400,
+ /obj/item/clothing/suit/wizrobe/fake = 200,
+ /obj/item/clothing/head/wizard/fake = 200,
+ /obj/item/weapon/staff = 400,
+ /obj/item/clothing/mask/gas/sexyclown = 600,
+ /obj/item/clothing/under/sexyclown = 200,
+ /obj/item/clothing/mask/gas/sexymime = 600,
+ /obj/item/clothing/under/sexymime = 200)
+ premium = list(/obj/item/clothing/suit/imperium_monk = 3)
+ contraband = list(/obj/item/clothing/head/syndicatefake = 1,
+ /obj/item/clothing/suit/syndicatefake = 1)
diff --git a/code/game/objects/effects/chem/foam.dm b/code/game/objects/effects/chem/foam.dm
index f32a75dcce..d3ee736251 100644
--- a/code/game/objects/effects/chem/foam.dm
+++ b/code/game/objects/effects/chem/foam.dm
@@ -74,6 +74,12 @@
qdel(src)
/obj/effect/effect/foam/Crossed(var/atom/movable/AM)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(metal)
return
if(istype(AM, /mob/living))
diff --git a/code/game/objects/effects/decals/Cleanable/humans.dm b/code/game/objects/effects/decals/Cleanable/humans.dm
index 7a773c733e..cfde668d5c 100644
--- a/code/game/objects/effects/decals/Cleanable/humans.dm
+++ b/code/game/objects/effects/decals/Cleanable/humans.dm
@@ -70,6 +70,12 @@ var/global/list/image/splatter_cache=list()
desc = initial(desc)
/obj/effect/decal/cleanable/blood/Crossed(mob/living/carbon/human/perp)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = perp
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if (!istype(perp))
return
if(amount < 1)
diff --git a/code/game/objects/effects/effect_system.dm b/code/game/objects/effects/effect_system.dm
index 551449a8fb..d1de900bae 100644
--- a/code/game/objects/effects/effect_system.dm
+++ b/code/game/objects/effects/effect_system.dm
@@ -185,6 +185,12 @@ steam.start() -- spawns the effect
qdel(src)
/obj/effect/effect/smoke/Crossed(mob/living/carbon/M as mob )
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = M
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
..()
if(istype(M))
affect(M)
diff --git a/code/game/objects/effects/mines.dm b/code/game/objects/effects/mines.dm
index 87af3ec90b..fb4117ef44 100644
--- a/code/game/objects/effects/mines.dm
+++ b/code/game/objects/effects/mines.dm
@@ -36,6 +36,12 @@
..()
/obj/effect/mine/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
Bumped(AM)
/obj/effect/mine/Bumped(mob/M as mob|obj)
diff --git a/code/game/objects/effects/portals.dm b/code/game/objects/effects/portals.dm
index 7dc82a0ffb..5ba58dc4e0 100644
--- a/code/game/objects/effects/portals.dm
+++ b/code/game/objects/effects/portals.dm
@@ -21,6 +21,12 @@ GLOBAL_LIST_BOILERPLATE(all_portals, /obj/effect/portal)
return
/obj/effect/portal/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(istype(AM,/mob) && !(istype(AM,/mob/living)))
return //do not send ghosts, zshadows, ai eyes, etc
spawn(0)
diff --git a/code/game/objects/effects/spiders_vr.dm b/code/game/objects/effects/spiders_vr.dm
new file mode 100644
index 0000000000..65829b95ac
--- /dev/null
+++ b/code/game/objects/effects/spiders_vr.dm
@@ -0,0 +1,2 @@
+/obj/effect/spider/spiderling/virgo
+ grow_as = list(/mob/living/simple_mob/animal/giant_spider, /mob/living/simple_mob/animal/giant_spider/hunter)
diff --git a/code/game/objects/effects/step_triggers.dm b/code/game/objects/effects/step_triggers.dm
index 6119138121..870656d92e 100644
--- a/code/game/objects/effects/step_triggers.dm
+++ b/code/game/objects/effects/step_triggers.dm
@@ -13,6 +13,12 @@
return 0
/obj/effect/step_trigger/Crossed(H as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = H
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
..()
if(!H)
return
diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm
index 1d1d591d57..53a83c66bd 100644
--- a/code/game/objects/items/devices/PDA/PDA.dm
+++ b/code/game/objects/items/devices/PDA/PDA.dm
@@ -1456,6 +1456,12 @@ var/global/list/obj/item/device/pda/PDAs = list()
return ..()
/obj/item/device/pda/clown/Crossed(AM as mob|obj) //Clown PDA is slippery.
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if (istype(AM, /mob/living))
var/mob/living/M = AM
diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm
index d457ccf7d1..dd7b87184c 100644
--- a/code/game/objects/items/toys.dm
+++ b/code/game/objects/items/toys.dm
@@ -322,6 +322,12 @@
qdel(src)
/obj/item/toy/snappop/Crossed(H as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = H
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if((ishuman(H))) //i guess carp and shit shouldn't set them off
var/mob/living/carbon/M = H
if(M.m_intent == "run")
diff --git a/code/game/objects/items/weapons/clown_items.dm b/code/game/objects/items/weapons/clown_items.dm
index cb6a4e4a42..890e557f50 100644
--- a/code/game/objects/items/weapons/clown_items.dm
+++ b/code/game/objects/items/weapons/clown_items.dm
@@ -9,6 +9,12 @@
* Banana Peals
*/
/obj/item/weapon/bananapeel/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if (istype(AM, /mob/living))
var/mob/living/M = AM
M.slip("the [src.name]",4)
@@ -24,6 +30,12 @@
reagents.add_reagent("cleaner", 5)
/obj/item/weapon/soap/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if (istype(AM, /mob/living))
var/mob/living/M = AM
M.slip("the [src.name]",3)
diff --git a/code/game/objects/items/weapons/material/shards.dm b/code/game/objects/items/weapons/material/shards.dm
index 7d7d78eeba..8df81e434c 100644
--- a/code/game/objects/items/weapons/material/shards.dm
+++ b/code/game/objects/items/weapons/material/shards.dm
@@ -108,6 +108,12 @@
/obj/item/weapon/material/shard/Crossed(AM as mob|obj)
..()
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(isliving(AM))
var/mob/M = AM
diff --git a/code/game/objects/items/weapons/storage/boxes_vr.dm b/code/game/objects/items/weapons/storage/boxes_vr.dm
index f2cbd06aed..8feee76bdd 100644
--- a/code/game/objects/items/weapons/storage/boxes_vr.dm
+++ b/code/game/objects/items/weapons/storage/boxes_vr.dm
@@ -33,7 +33,7 @@
starts_with = list(/obj/item/device/encryptionkey/headset_com = 7)
/obj/item/weapon/storage/box/servicekeys
- name = "box of command keys"
+ name = "box of service keys"
desc = "A box full of service keys, for the HoP to give out as necessary."
starts_with = list(/obj/item/device/encryptionkey/headset_service = 7)
diff --git a/code/game/objects/items/weapons/traps.dm b/code/game/objects/items/weapons/traps.dm
index 1e63201f4e..1febf6b1ae 100644
--- a/code/game/objects/items/weapons/traps.dm
+++ b/code/game/objects/items/weapons/traps.dm
@@ -106,6 +106,12 @@
can_buckle = initial(can_buckle)
/obj/item/weapon/beartrap/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(deployed && isliving(AM))
var/mob/living/L = AM
if(L.m_intent == "run")
diff --git a/code/game/objects/structures/catwalk.dm b/code/game/objects/structures/catwalk.dm
index 20fd025ea9..5c606422d7 100644
--- a/code/game/objects/structures/catwalk.dm
+++ b/code/game/objects/structures/catwalk.dm
@@ -87,6 +87,12 @@
return ..()
/obj/structure/catwalk/Crossed()
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = usr
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
. = ..()
if(isliving(usr))
playsound(src, pick('sound/effects/footstep/catwalk1.ogg', 'sound/effects/footstep/catwalk2.ogg', 'sound/effects/footstep/catwalk3.ogg', 'sound/effects/footstep/catwalk4.ogg', 'sound/effects/footstep/catwalk5.ogg'), 25, 1)
diff --git a/code/game/world.dm b/code/game/world.dm
index 075929b799..da0e2ae371 100644
--- a/code/game/world.dm
+++ b/code/game/world.dm
@@ -57,8 +57,8 @@
populate_robolimb_list()
//Must be done now, otherwise ZAS zones and lighting overlays need to be recreated.
- createRandomZlevel()
-
+ //createRandomZlevel() //VOREStation Removal: Deprecated
+
processScheduler = new
master_controller = new /datum/controller/game_controller()
diff --git a/code/modules/admin/ckey_vr.dm b/code/modules/admin/ckey_vr.dm
index 90463eafcc..a46a4cdc07 100644
--- a/code/modules/admin/ckey_vr.dm
+++ b/code/modules/admin/ckey_vr.dm
@@ -4,7 +4,7 @@
set name = "Set CKey"
set desc = "Mob to teleport"
if(!src.holder)
- src << "Only administrators may use this command."
+ to_chat(src, "Only administrators may use this command.")
return
var/list/keys = list()
diff --git a/code/modules/assembly/holder.dm b/code/modules/assembly/holder.dm
index 930329fd93..7db2d4e827 100644
--- a/code/modules/assembly/holder.dm
+++ b/code/modules/assembly/holder.dm
@@ -104,6 +104,12 @@
/obj/item/device/assembly_holder/Crossed(atom/movable/AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(a_left)
a_left.Crossed(AM)
if(a_right)
diff --git a/code/modules/assembly/infrared.dm b/code/modules/assembly/infrared.dm
index a76dae8ec7..afec31665d 100644
--- a/code/modules/assembly/infrared.dm
+++ b/code/modules/assembly/infrared.dm
@@ -25,7 +25,7 @@
/obj/item/device/assembly/infra/toggle_secure()
secured = !secured
if(secured)
- START_PROCESSING(SSobj, src)
+ START_PROCESSING(SSobj, src)
else
on = 0
if(first) qdel(first)
@@ -242,6 +242,12 @@
return
/obj/effect/beam/i_beam/Crossed(atom/movable/AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(istype(AM, /obj/effect/beam))
return
spawn(0)
diff --git a/code/modules/assembly/mousetrap.dm b/code/modules/assembly/mousetrap.dm
index 7d1c5346c0..b54df46b54 100644
--- a/code/modules/assembly/mousetrap.dm
+++ b/code/modules/assembly/mousetrap.dm
@@ -83,6 +83,12 @@
/obj/item/device/assembly/mousetrap/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(armed)
if(ishuman(AM))
var/mob/living/carbon/H = AM
diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm
index cee8fb73b0..b6695e39cb 100644
--- a/code/modules/awaymissions/gateway.dm
+++ b/code/modules/awaymissions/gateway.dm
@@ -168,6 +168,7 @@ obj/machinery/gateway/centerstation/process()
update_icon()
stationgate = locate(/obj/machinery/gateway/centerstation)
. = ..()
+ density = 1 //VOREStation Add
/obj/machinery/gateway/centeraway/update_icon()
diff --git a/code/modules/catalogue/catalogue_data_vr.dm b/code/modules/catalogue/catalogue_data_vr.dm
index 5fa252ea39..0c97e9ce00 100644
--- a/code/modules/catalogue/catalogue_data_vr.dm
+++ b/code/modules/catalogue/catalogue_data_vr.dm
@@ -60,6 +60,11 @@
desc = ""
value = CATALOGUER_REWARD_TRIVIAL
+/datum/category_item/catalogue/fauna/shadekin
+ name = "Sapients - Shadekin"
+ desc = ""
+ value = CATALOGUER_REWARD_EASY
+
/datum/category_item/catalogue/fauna/custom_species
name = "Sapients - Other"
desc = "Remote frontiers require people of all sorts of life...\
diff --git a/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm b/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm
new file mode 100644
index 0000000000..959f0951d5
--- /dev/null
+++ b/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm
@@ -0,0 +1,14 @@
+/datum/gear_tweak/collar_tag/get_contents(var/metadata)
+ return "Tag: [metadata]"
+
+/datum/gear_tweak/collar_tag/get_default()
+ return ""
+
+/datum/gear_tweak/collar_tag/get_metadata(var/user, var/metadata)
+ return sanitize( input(user, "Choose the tag text", "Character Preference", metadata) as text , MAX_NAME_LEN )
+
+/datum/gear_tweak/collar_tag/tweak_item(var/obj/item/clothing/accessory/collar/C, var/metadata)
+ if(metadata == "")
+ return
+ else
+ C.initialize_tag(metadata)
\ No newline at end of file
diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm
index 0f1ab31c6e..5e667b49e2 100644
--- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm
@@ -6,6 +6,10 @@
slot = slot_tie
sort_category = "Accessories"
+/datum/gear/collar/New()
+ ..()
+ gear_tweaks = list(gear_tweak_collar_tag)
+
/datum/gear/collar/golden
display_name = "collar, golden"
path = /obj/item/clothing/accessory/collar/gold
diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
index 13c81b63e1..b3875d037a 100644
--- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
@@ -34,6 +34,12 @@
ckeywhitelist = list("aegisoa")
character_name = list("Xander Bevin")
+/datum/gear/fluff/xander_medal
+ path = /obj/item/clothing/accessory/medal/conduct
+ display_name = "Xander's Conduct Medal"
+ ckeywhitelist = list("aegisoa")
+ character_name = list("Xander Bevin")
+
/datum/gear/fluff/lynn_penlight
path = /obj/item/device/flashlight/pen/fluff/lynn
display_name = "Lynn's Penlight"
@@ -85,6 +91,12 @@
ckeywhitelist = list("beyondmylife")
character_name = list("Ne'tra Ky'ram")
+/datum/gear/fluff/nolan_medal
+ path = /obj/item/clothing/accessory/medal/silver/unity
+ display_name = "Nolan's Unity Medal"
+ ckeywhitelist = list("blakeryan")
+ character_name = list("Nolan Conaway")
+
/datum/gear/fluff/xin_sovietuniform
path = /obj/item/clothing/under/soviet
display_name = "Xin's Soviet Uniform"
@@ -98,6 +110,24 @@
ckeywhitelist = list("bwoincognito")
character_name = list("Tasald Corlethian")
+/datum/gear/fluff/tasald_cartographer_jumpsuit
+ path = /obj/item/clothing/under/solgov/utility/sifguard/officer/exploration
+ display_name = "Tasald's Cartographer's uniform - jumpsuit"
+ ckeywhitelist = list("bwoincognito")
+ character_name = list("Tasald Corlethian")
+
+/datum/gear/fluff/tasald_cartographer_jacket
+ path = /obj/item/clothing/suit/storage/service/sifguard/command
+ display_name = "Tasald's Cartographer's uniform - jacket"
+ ckeywhitelist = list("bwoincognito")
+ character_name = list("Tasald Corlethian")
+
+/datum/gear/fluff/tasald_cartographer_beret
+ path = /obj/item/clothing/head/beret/sol/expedition/command
+ display_name = "Tasald's Cartographer's uniform - beret"
+ ckeywhitelist = list("bwoincognito")
+ character_name = list("Tasald Corlethian")
+
/datum/gear/fluff/octavius_box
path = /obj/item/weapon/storage/box/fluff/octavious
display_name = "Octavious' Box"
@@ -210,6 +240,12 @@
ckeywhitelist = list("epigraphzero")
character_name = list("Verd Woodrow")
+/datum/gear/fluff/erik_medal
+ path = /obj/item/clothing/accessory/medal/silver/unity
+ display_name = "Erik's Unity Medal"
+ ckeywhitelist = list("erikthedog")
+ character_name = list("Erik Ramadwood")
+
// F CKEYS
// G CKEYS
@@ -708,6 +744,12 @@
ckeywhitelist = list("techtypes")
character_name = list("Lasshseeki Korss")
+/datum/gear/fluff/nick_medal
+ path = /obj/item/clothing/accessory/medal/conduct
+ display_name = "Nick's Conduct Medal"
+ ckeywhitelist = list("thedavestdave")
+ character_name = list("Nick Sloan")
+
/datum/gear/fluff/konor_medal
path = /obj/item/clothing/accessory/medal/silver/unity
display_name = "Konor's Unity Medal"
@@ -897,3 +939,9 @@
display_name = "Nehi's Radio"
ckeywhitelist = list("zodiacshadow")
character_name = list("Nehi Maximus")
+
+/datum/gear/fluff/star_sweater
+ path = /obj/item/clothing/accessory/sweater/fluff/star
+ display_name = "Star Sweater"
+ ckeywhitelist = list("bacon12366")
+ character_name = list("Elly Brown")
\ No newline at end of file
diff --git a/code/modules/client/preference_setup/vore/01_ears.dm b/code/modules/client/preference_setup/vore/01_ears.dm
index 91ae5f41c9..51e100ec9e 100644
--- a/code/modules/client/preference_setup/vore/01_ears.dm
+++ b/code/modules/client/preference_setup/vore/01_ears.dm
@@ -89,10 +89,19 @@
pref.b_wing = sanitize_integer(pref.b_wing, 0, 255, initial(pref.b_wing))
if(pref.ear_style)
pref.ear_style = sanitize_inlist(pref.ear_style, ear_styles_list, initial(pref.ear_style))
+ var/datum/sprite_accessory/temp_ear_style = ear_styles_list[pref.ear_style]
+ if(temp_ear_style.apply_restrictions && (!(pref.species in temp_ear_style.species_allowed)))
+ pref.ear_style = initial(pref.ear_style)
if(pref.tail_style)
pref.tail_style = sanitize_inlist(pref.tail_style, tail_styles_list, initial(pref.tail_style))
+ var/datum/sprite_accessory/temp_tail_style = tail_styles_list[pref.tail_style]
+ if(temp_tail_style.apply_restrictions && (!(pref.species in temp_tail_style.species_allowed)))
+ pref.tail_style = initial(pref.tail_style)
if(pref.wing_style)
pref.wing_style = sanitize_inlist(pref.wing_style, wing_styles_list, initial(pref.wing_style))
+ var/datum/sprite_accessory/temp_wing_style = wing_styles_list[pref.wing_style]
+ if(temp_wing_style.apply_restrictions && (!(pref.species in temp_wing_style.species_allowed)))
+ pref.wing_style = initial(pref.wing_style)
/datum/category_item/player_setup_item/vore/ears/copy_to_mob(var/mob/living/carbon/human/character)
character.ear_style = ear_styles_list[pref.ear_style]
@@ -182,7 +191,7 @@
var/list/pretty_ear_styles = list("Normal" = null)
for(var/path in ear_styles_list)
var/datum/sprite_accessory/ears/instance = ear_styles_list[path]
- if((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed))
+ if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed)))
pretty_ear_styles[instance.name] = path
// Present choice to user
@@ -215,7 +224,7 @@
var/list/pretty_tail_styles = list("Normal" = null)
for(var/path in tail_styles_list)
var/datum/sprite_accessory/tail/instance = tail_styles_list[path]
- if((!instance.ckeys_allowed) || (user.ckey in instance.ckeys_allowed))
+ if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed)))
pretty_tail_styles[instance.name] = path
// Present choice to user
@@ -248,7 +257,7 @@
var/list/pretty_wing_styles = list("Normal" = null)
for(var/path in wing_styles_list)
var/datum/sprite_accessory/wing/instance = wing_styles_list[path]
- if((!instance.ckeys_allowed) || (user.ckey in instance.ckeys_allowed))
+ if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed)))
pretty_wing_styles[instance.name] = path
// Present choice to user
diff --git a/code/modules/client/preferences_toggle_procs.dm b/code/modules/client/preferences_toggle_procs.dm
index 0bf770e76c..d016029b23 100644
--- a/code/modules/client/preferences_toggle_procs.dm
+++ b/code/modules/client/preferences_toggle_procs.dm
@@ -203,7 +203,7 @@
toggle_preference(pref_path)
- src << "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear jukebox music."
+ to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear jukebox music.")
SScharacter_setup.queue_preferences_save(prefs)
diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm
index 5c8171ce27..746a95d6db 100644
--- a/code/modules/client/preferences_vr.dm
+++ b/code/modules/client/preferences_vr.dm
@@ -13,7 +13,7 @@ datum/preferences
toggle_preference(pref_path)
- src << "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear eating related vore noises."
+ to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear eating related vore noises.")
SScharacter_setup.queue_preferences_save(prefs)
@@ -29,7 +29,7 @@ datum/preferences
toggle_preference(pref_path)
- src << "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear digestion related vore noises."
+ to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear digestion related vore noises.")
SScharacter_setup.queue_preferences_save(prefs)
diff --git a/code/modules/clothing/clothing_vr.dm b/code/modules/clothing/clothing_vr.dm
index 3e8d2d45ad..f81dd53c18 100644
--- a/code/modules/clothing/clothing_vr.dm
+++ b/code/modules/clothing/clothing_vr.dm
@@ -180,4 +180,4 @@
sprite_sheets = list(
SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi',
- SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi')
\ No newline at end of file
+ SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi')
diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm
index 5dc05b44c8..9f1e33f457 100644
--- a/code/modules/clothing/under/accessories/accessory_vr.dm
+++ b/code/modules/clothing/under/accessories/accessory_vr.dm
@@ -211,13 +211,17 @@
desc = initial(desc)
else
to_chat(user,"You set the [name]'s tag to '[str]'.")
- name = initial(name) + " ([str])"
- if(istype(src,/obj/item/clothing/accessory/collar/holo))
- desc = initial(desc) + " The tag says \"[str]\"."
- else
- desc = initial(desc) + " \"[str]\" has been engraved on the tag."
+ initialize_tag(str)
+
+/obj/item/clothing/accessory/collar/proc/initialize_tag(var/tag)
+ name = initial(name) + " ([tag])"
+ desc = initial(desc) + " \"[tag]\" has been engraved on the tag."
writtenon = 1
+/obj/item/clothing/accessory/collar/holo/initialize_tag(var/tag)
+ ..()
+ desc = initial(desc) + " The tag says \"[tag]\"."
+
/obj/item/clothing/accessory/collar/attackby(obj/item/I, mob/user)
if(istype(src,/obj/item/clothing/accessory/collar/holo))
return
diff --git a/code/modules/events/event_container.dm b/code/modules/events/event_container.dm
index a4c55b27ae..79c294c5ac 100644
--- a/code/modules/events/event_container.dm
+++ b/code/modules/events/event_container.dm
@@ -142,7 +142,6 @@ var/global/list/severity_to_string = list(EVENT_LEVEL_MUNDANE = "Mundane", EVENT
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust , 60, list(ASSIGNMENT_ENGINEER = 20), 0, 0, 50),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400),
- //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 50), //VORESTATION AI TEMPORARY REMOVAL
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100)),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50)),
diff --git a/code/modules/events/event_container_vr.dm b/code/modules/events/event_container_vr.dm
index 0212435c71..6f5e8dada2 100644
--- a/code/modules/events/event_container_vr.dm
+++ b/code/modules/events/event_container_vr.dm
@@ -28,36 +28,38 @@
/datum/event_container/mundane/New()
available_events = list(
// Severity level, event name, even type, base weight, role weights, one shot, min weight, max weight. Last two only used if set and non-zero
- new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Nothing", /datum/event/nothing, 200),
+ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Nothing", /datum/event/nothing, 400),
// Bluescreens APCs, but they still work
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "APC Damage", /datum/event/apc_damage, 20, list(ASSIGNMENT_ENGINEER = 20)),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Brand Intelligence",/datum/event/brand_intelligence,20, list(ASSIGNMENT_JANITOR = 25), 1),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Camera Damage", /datum/event/camera_damage, 20, list(ASSIGNMENT_ENGINEER = 20)),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Canister Leak", /datum/event/canister_leak, 10, list(ASSIGNMENT_ENGINEER = 20)),
- new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 1, 0, 50),
+ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 0, 0, 50),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Economic News", /datum/event/economic_event, 300),
- //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 1, list(), 1),
+ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lost Carp", /datum/event/carp_migration, 0, list(ASSIGNMENT_SECURITY = 10), 1),
+ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Hacker", /datum/event/money_hacker, 0, list(ASSIGNMENT_ANY = 4), 1, 10, 25),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Lotto", /datum/event/money_lotto, 0, list(ASSIGNMENT_ANY = 1), 1, 5, 15),
//new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Mundane News", /datum/event/mundane_news, 300),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "PDA Spam", /datum/event/pda_spam, 0, list(ASSIGNMENT_ANY = 4), 1, 25, 50),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400),
+ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400),
// Spawns mice, lizards, or dud spiderlings
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100), 1),
// Rot only weakens walls, not destroy them
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50), 1),
)
add_disabled_events(list(
- new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lost Carp", /datum/event/carp_migration, 20, list(ASSIGNMENT_SECURITY = 10), 1),
- new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Hacker", /datum/event/money_hacker, 0, list(ASSIGNMENT_ANY = 4), 1, 10, 25),
+ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 1, list(), 1),
new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1),
))
/datum/event_container/moderate/New()
available_events = list(
- new /datum/event_meta(EVENT_LEVEL_MODERATE, "Nothing", /datum/event/nothing, 800),
+ new /datum/event_meta(EVENT_LEVEL_MODERATE, "Nothing", /datum/event/nothing, 1600),
// Leaks gas into an unoccupied room.
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Atmos Leak", /datum/event/atmos_leak, 30, list(ASSIGNMENT_ENGINEER = 25), 1),
+ new /datum/event_meta(EVENT_LEVEL_MODERATE, "Carp School", /datum/event/carp_migration, 0, list(ASSIGNMENT_SECURITY = 30), 1),
// Just disables comms for a short while.
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Communication Blackout", /datum/event/communications_blackout, 500, list(ASSIGNMENT_AI = 150, ASSIGNMENT_SECURITY = 120), 1),
// Just blows out a few lights
@@ -71,37 +73,36 @@
// Opens doors in brig. So just RP fun
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Prison Break", /datum/event/prison_break, 10, list(ASSIGNMENT_SECURITY = 100), 1),
// Radiation, but only in space.
+ new /datum/event_meta(EVENT_LEVEL_MODERATE, "Rogue Drones", /datum/event/rogue_drone, 0, list(ASSIGNMENT_SECURITY = 20), 1),
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Solar Storm", /datum/event/solar_storm, 30, list(ASSIGNMENT_ENGINEER = 40, ASSIGNMENT_SECURITY = 30), 1),
+ new /datum/event_meta(EVENT_LEVEL_MODERATE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 1, 0, 50),
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Virology Breach", /datum/event/prison_break/virology, 0, list(ASSIGNMENT_MEDICAL = 100), 1),
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Xenobiology Breach", /datum/event/prison_break/xenobiology, 0, list(ASSIGNMENT_SCIENCE = 100), 1),
- new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grub Infestation", /datum/event/grub_infestation, 0, list(ASSIGNMENT_SECURITY = 20, ASSIGNMENT_ENGINEER = 30), 1),
+ new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 30, list(ASSIGNMENT_SECURITY = 30), 1),
//Evil grubs that drain station power slightly
+ new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grub Infestation", /datum/event/grub_infestation, 0, list(ASSIGNMENT_SECURITY = 10, ASSIGNMENT_ENGINEER = 30), 1),
)
add_disabled_events(list(
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Appendicitis", /datum/event/spontaneous_appendicitis, 0, list(ASSIGNMENT_MEDICAL = 30), 1),
- new /datum/event_meta(EVENT_LEVEL_MODERATE, "Carp School", /datum/event/carp_migration, 100, list(ASSIGNMENT_ENGINEER = 20, ASSIGNMENT_SECURITY = 30), 1),
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Meteor Shower", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 20)),
// Not bad (dorms are shielded) but inconvenient
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Radiation Storm", /datum/event/radiation_storm, 50, list(ASSIGNMENT_MEDICAL = 50), 1),
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Random Antagonist", /datum/event/random_antag, 2.5, list(ASSIGNMENT_SECURITY = 1), 1, 0, 5),
- new /datum/event_meta(EVENT_LEVEL_MODERATE, "Rogue Drones", /datum/event/rogue_drone, 20, list(ASSIGNMENT_SECURITY = 60)),
- new /datum/event_meta(EVENT_LEVEL_MODERATE, "Space Dust", /datum/event/dust, 80, list(ASSIGNMENT_ENGINEER = 30)),
- new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 100, list(ASSIGNMENT_SECURITY = 40), 1),
new /datum/event_meta(EVENT_LEVEL_MODERATE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1),
))
/datum/event_container/major/New()
available_events = list(
- new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 900),
+ new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 3600),
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Atmos Leak", /datum/event/atmos_leak, 30, list(ASSIGNMENT_ENGINEER = 25), 1),
- new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15) ,1)
+ new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15), 1),
+ new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 7), 1),
+ new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 5), 1),
+ new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station,0, list(ASSIGNMENT_ANY = 5), 1),
)
add_disabled_events(list(
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Blob", /datum/event/blob, 10, list(ASSIGNMENT_ENGINEER = 60), 1),
- new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 10), 1),
- new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station,0,list(ASSIGNMENT_ANY = 5)),
- new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 30), 1),
- new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 15), 1),
+ new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 15), 1),
new /datum/event_meta(EVENT_LEVEL_MAJOR, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1),
))
diff --git a/code/modules/events/ian_storm_vr.dm b/code/modules/events/ian_storm_vr.dm
index 2ddee490d9..574df331bb 100644
--- a/code/modules/events/ian_storm_vr.dm
+++ b/code/modules/events/ian_storm_vr.dm
@@ -23,7 +23,7 @@
for(var/i = 0, i < 3, i++)
var/turf/target = get_step(T, pick(alldirs))
if(target && istype(target, /turf/simulated/floor))
- var/mob/living/simple_mob/corgi/Ian/doge = new(target)
+ var/mob/living/simple_mob/animal/passive/dog/corgi/Ian/doge = new(target)
doge.name = "Ian " + pick("Alpha", "Beta", "Chi", "Delta", "Epsilon", "Phi",
"Gamma", "Eta", "Iota", "Kappa", "Lambda", "Omicron", "Theta",
"Rho", "Sigma", "Tau", "Upsilon", "Omega", "Psi", "Zeta")
diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm
index 7eb0be92cc..6d0be161c5 100644
--- a/code/modules/events/spider_infestation.dm
+++ b/code/modules/events/spider_infestation.dm
@@ -23,6 +23,6 @@
while((spawncount >= 1) && vents.len)
var/obj/vent = pick(vents)
- new /obj/effect/spider/spiderling(vent.loc)
+ new /obj/effect/spider/spiderling/virgo(vent.loc) //VOREStation Edit - No nurses
vents -= vent
spawncount--
diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm
index 303deb06e1..428f50e696 100644
--- a/code/modules/hydroponics/grown.dm
+++ b/code/modules/hydroponics/grown.dm
@@ -24,50 +24,50 @@
if(planttype)
plantname = planttype
- if(!plantname)
- return
-
- if(!plant_controller)
- sleep(250) // ugly hack, should mean roundstart plants are fine.
- if(!plant_controller)
- world << "Plant controller does not exist and [src] requires it. Aborting."
- qdel(src)
- return
-
- seed = plant_controller.seeds[plantname]
-
- if(!seed)
- return
-
- name = "[seed.seed_name]"
- trash = seed.get_trash_type()
-
- update_icon()
-
- if(!seed.chems)
- return
-
- potency = seed.get_trait(TRAIT_POTENCY)
-
/obj/item/weapon/reagent_containers/food/snacks/grown/Initialize()
..()
+ spawn()
+ if(!plantname)
+ return
- for(var/rid in seed.chems)
- var/list/reagent_data = seed.chems[rid]
- if(reagent_data && reagent_data.len)
- var/rtotal = reagent_data[1]
- var/list/data = list()
- if(reagent_data.len > 1 && potency > 0)
- rtotal += round(potency/reagent_data[2])
- if(rid == "nutriment")
- data[seed.seed_name] = max(1,rtotal)
+ if(!plant_controller)
+ sleep(250) // ugly hack, should mean roundstart plants are fine.
+ if(!plant_controller)
+ world << "Plant controller does not exist and [src] requires it. Aborting."
+ qdel(src)
+ return
- reagents.add_reagent(rid,max(1,rtotal),data)
- update_desc()
- if(reagents.total_volume > 0)
- bitesize = 1+round(reagents.total_volume / 2, 1)
- if(seed.get_trait(TRAIT_STINGS))
- force = 1
+ seed = plant_controller.seeds[plantname]
+
+ if(!seed)
+ return
+
+ name = "[seed.seed_name]"
+ trash = seed.get_trash_type()
+
+ update_icon()
+
+ if(!seed.chems)
+ return
+
+ potency = seed.get_trait(TRAIT_POTENCY)
+
+ for(var/rid in seed.chems)
+ var/list/reagent_data = seed.chems[rid]
+ if(reagent_data && reagent_data.len)
+ var/rtotal = reagent_data[1]
+ var/list/data = list()
+ if(reagent_data.len > 1 && potency > 0)
+ rtotal += round(potency/reagent_data[2])
+ if(rid == "nutriment")
+ data[seed.seed_name] = max(1,rtotal)
+
+ reagents.add_reagent(rid,max(1,rtotal),data)
+ update_desc()
+ if(reagents.total_volume > 0)
+ bitesize = 1+round(reagents.total_volume / 2, 1)
+ if(seed.get_trait(TRAIT_STINGS))
+ force = 1
/obj/item/weapon/reagent_containers/food/snacks/grown/proc/update_desc()
@@ -157,6 +157,12 @@
overlays |= plant_icon
/obj/item/weapon/reagent_containers/food/snacks/grown/Crossed(var/mob/living/M)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = M
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(seed && seed.get_trait(TRAIT_JUICY) == 2)
if(istype(M))
diff --git a/code/modules/hydroponics/spreading/spreading_response.dm b/code/modules/hydroponics/spreading/spreading_response.dm
index 8a8ceabfeb..1a2e46283e 100644
--- a/code/modules/hydroponics/spreading/spreading_response.dm
+++ b/code/modules/hydroponics/spreading/spreading_response.dm
@@ -20,6 +20,12 @@
manual_unbuckle(user)
/obj/effect/plant/Crossed(atom/movable/O)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = O
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(isliving(O))
trodden_on(O)
diff --git a/code/modules/library/hardcode_library/_library.dm b/code/modules/library/hardcode_library/_library.dm
new file mode 100644
index 0000000000..03364fea0a
--- /dev/null
+++ b/code/modules/library/hardcode_library/_library.dm
@@ -0,0 +1,61 @@
+/*
+ * Home of the New (NOV 1st, 2019) library books.
+ */
+
+/obj/item/weapon/book/custom_library
+ name = "Book"
+ desc = "A hardbound book."
+ description_info = "This book is printed from the custom repo. If you can see this, something went wrong."
+
+ icon = 'icons/obj/custom_books.dmi'
+ icon_state = "book"
+
+ // This is the ckey of the book's author.
+ var/origkey = null
+ author = "UNKNOWN"
+
+/obj/item/weapon/book/custom_library/fiction
+ libcategory = "Fiction"
+
+/obj/item/weapon/book/custom_library/nonfiction
+ libcategory = "Non-Fiction"
+
+/obj/item/weapon/book/custom_library/reference
+ libcategory = "Reference"
+
+/obj/item/weapon/book/custom_library/religious
+ libcategory = "Religious"
+/*
+/obj/item/weapon/book/custom_library/adult
+ libcategory = "Adult"
+*/
+/obj/item/weapon/book/bundle/custom_library
+ name = "Book"
+ desc = "A hardbound book."
+ description_info = "This book is printed from the custom repo. If you can see this, something went wrong."
+
+ icon = 'icons/obj/custom_books.dmi'
+ icon_state = "book"
+
+ // This is the ckey of the book's author.
+ var/origkey = null
+ author = "UNKNOWN"
+
+ page = 1 //current page
+ pages = list() //the contents of each page
+
+/obj/item/weapon/book/bundle/custom_library/fiction
+ libcategory = "Fiction"
+
+/obj/item/weapon/book/bundle/custom_library/nonfiction
+ libcategory = "Non-Fiction"
+
+/obj/item/weapon/book/bundle/custom_library/reference
+ libcategory = "Reference"
+
+/obj/item/weapon/book/bundle/custom_library/religious
+ libcategory = "Religious"
+/*
+/obj/item/weapon/book/bundle/custom_library/adult
+ libcategory = "Adult"
+*/
diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm
index 3c7ebec377..9b9be0d6c8 100644
--- a/code/modules/library/lib_items.dm
+++ b/code/modules/library/lib_items.dm
@@ -147,6 +147,7 @@
var/dat // Actual page content
var/due_date = 0 // Game time in 1/10th seconds
var/author // Who wrote the thing, can be changed by pen or PC. It is not automatically assigned
+ var/libcategory = "Miscellaneous" // The library category this book sits in. "Fiction", "Non-Fiction", "Adult", "Reference", "Religion"
var/unique = 0 // 0 - Normal book, 1 - Should not be treated as normal book, unable to be copied, unable to be modified
var/title // The real name of the book.
var/carved = 0 // Has the book been hollowed out for use as a secret storage item?
@@ -260,6 +261,74 @@
M << browse("Penned by [author].
" + "[dat]", "window=book")
user.setClickCooldown(DEFAULT_QUICK_COOLDOWN) //to prevent spam
+/*
+* Book Bundle (Multi-page book)
+*/
+
+/obj/item/weapon/book/bundle
+ var/page = 1 //current page
+ var/list/pages = list() //the contents of each page
+
+/obj/item/weapon/book/bundle/proc/show_content(mob/user as mob)
+ var/dat
+ var/obj/item/weapon/W = pages[page]
+ // first
+ if(page == 1)
+ dat+= "

Written on the back:
[P.scribble]" : ]"\
+ + "", "window=[name]")
+ else if(!isnull(pages[page]))
+ if(!(istype(usr, /mob/living/carbon/human) || isobserver(usr) || istype(usr, /mob/living/silicon)))
+ dat += "
Page [page][stars(pages[page])]"
+ else
+ dat += "
Page [page][pages[page]]"
+ user << browse(dat, "window=[name]")
+
+/obj/item/weapon/book/bundle/attack_self(mob/user as mob)
+ src.show_content(user)
+ add_fingerprint(usr)
+ update_icon()
+ return
+
+/obj/item/weapon/book/bundle/Topic(href, href_list)
+ if(..())
+ return 1
+ if((src in usr.contents) || (istype(src.loc, /obj/item/weapon/folder) && (src.loc in usr.contents)))
+ usr.set_machine(src)
+ if(href_list["next_page"])
+ if(page != pages.len)
+ page++
+ playsound(src.loc, "pageturn", 50, 1)
+ if(href_list["prev_page"])
+ if(page > 1)
+ page--
+ playsound(src.loc, "pageturn", 50, 1)
+ src.attack_self(usr)
+ updateUsrDialog()
+ else
+ to_chat(usr, "
You need to hold it in your hands!")
/*
* Barcode Scanner
diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm
index 716b85f2f1..39070779ca 100644
--- a/code/modules/library/lib_machines.dm
+++ b/code/modules/library/lib_machines.dm
@@ -113,7 +113,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
* Library Computer
*/
// TODO: Make this an actual /obj/machinery/computer that can be crafted from circuit boards and such
-// It is August 22nd, 2012... This TODO has already been here for months.. I wonder how long it'll last before someone does something about it.
+// It is August 22nd, 2012... This TODO has already been here for months.. I wonder how long it'll last before someone does something about it. // Nov 2019. Nope.
/obj/machinery/librarycomp
name = "Check-In/Out Computer"
icon = 'icons/obj/library.dmi'
@@ -133,6 +133,40 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
var/bibledelay = 0 // LOL NO SPAM (1 minute delay) -- Doohl
+ var/static/list/all_books
+
+ var/static/list/base_genre_books
+
+/obj/machinery/librarycomp/Initialize()
+ ..()
+
+ if(!base_genre_books || !base_genre_books.len)
+ base_genre_books = list(
+ /obj/item/weapon/book/custom_library/fiction,
+ /obj/item/weapon/book/custom_library/nonfiction,
+ /obj/item/weapon/book/custom_library/reference,
+ /obj/item/weapon/book/custom_library/religious,
+ /obj/item/weapon/book/bundle/custom_library/fiction,
+ /obj/item/weapon/book/bundle/custom_library/nonfiction,
+ /obj/item/weapon/book/bundle/custom_library/reference,
+ /obj/item/weapon/book/bundle/custom_library/religious
+ )
+
+ if(!all_books || !all_books.len)
+ all_books = list()
+
+ for(var/path in subtypesof(/obj/item/weapon/book/codex/lore))
+ var/obj/item/weapon/book/C = new path(null)
+ all_books[C.name] = C
+
+ for(var/path in subtypesof(/obj/item/weapon/book/custom_library) - base_genre_books)
+ var/obj/item/weapon/book/B = new path(null)
+ all_books[B.title] = B
+
+ for(var/path in subtypesof(/obj/item/weapon/book/bundle/custom_library) - base_genre_books)
+ var/obj/item/weapon/book/M = new path(null)
+ all_books[M.title] = M
+
/obj/machinery/librarycomp/attack_hand(var/mob/user as mob)
usr.set_machine(src)
var/dat = "
Book Inventory Management\n" //
@@ -144,7 +178,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
3. Check out a Book
4. Connect to External Archive
5. Upload New Title to Archive
-
6. Print a Bible"}
+
6. Print a Bible
+
8. Access NT Internal Archive"}
if(src.emagged)
dat += "
7. Access the Forbidden Lore Vault"
if(src.arcanecheckout)
@@ -190,8 +225,11 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
(Commit Entry)
(Return to main menu)"}
if(4)
- dat += "
External Archive
"
+ dat += "
External Archive
" //VOREStation Edit
establish_old_db_connection()
+
+ dat += "
Warning: System Administrator has slated this archive for removal. Personal uploads should be taken to the NT board of internal literature.
"
+
if(!dbcon_old.IsConnected())
dat += "
ERROR: Unable to contact External Archive. Please contact your system administrator for assistance."
else
@@ -210,6 +248,10 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
dat += ""
dat += "
(Return to main menu)"
if(5)
+ //dat += "
ERROR
" //VOREStation Removal
+ //dat+= "
Library Database is in Secure Management Mode.\ //VOREStation Removal
+ //Contact a System Administrator for more information.
" //VOREStation Removal
+ //VOREstation Edit Start
dat += "
Upload a New Title
"
if(!scanner)
for(var/obj/machinery/libraryscanner/S in range(9))
@@ -227,12 +269,30 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
dat += {"
Author: [scanner.cache.author]
Category: [upload_category]
\[Upload\]"}
+ //VOREStation Edit End
dat += "
(Return to main menu)"
if(7)
dat += {"
Accessing Forbidden Lore Vault v 1.3
Are you absolutely sure you want to proceed? EldritchTomes Inc. takes no responsibilities for loss of sanity resulting from this action.
Yes.
No.
"}
+ if(8)
+ dat += "
NT Internal Archive
"
+ if(!all_books || !all_books.len)
+ dat += "
ERROR Something has gone seriously wrong. Contact System Administrator for more information."
+ else
+ dat += {"
"
+ dat += "
(Return to main menu)"
//dat += "
Close"
user << browse(dat, "window=library")
@@ -293,6 +353,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
if("7")
screenstate = 7
+ if("8")
+ screenstate = 8
if(href_list["arccheckout"])
if(src.emagged)
src.arcanecheckout = 1
@@ -328,6 +390,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
var/newcategory = input("Choose a category: ") in list("Fiction", "Non-Fiction", "Adult", "Reference", "Religion")
if(newcategory)
upload_category = newcategory
+
+ //VOREStation Edit Start
if(href_list["upload"])
if(scanner)
if(scanner.cache)
@@ -356,6 +420,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
else
log_game("[usr.name]/[usr.key] has uploaded the book titled [scanner.cache.name], [length(scanner.cache.dat)] signs")
alert("Upload Complete.")
+ //VOREStation Edit End
if(href_list["targetid"])
var/sqlid = sanitizeSQL(href_list["targetid"])
@@ -392,6 +457,10 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
spawn() src.Topic(nhref, params2list(nhref), src)
if(href_list["sort"] in list("author", "title", "category"))
sortby = href_list["sort"]
+ if(href_list["hardprint"])
+ var/newpath = href_list["hardprint"]
+ var/obj/item/weapon/book/NewBook = new newpath(get_turf(src))
+ NewBook.name = "Book: [NewBook.name]"
src.add_fingerprint(usr)
src.updateUsrDialog()
return
diff --git a/code/modules/lore_codex/codex.dm b/code/modules/lore_codex/codex.dm
index 126c470de4..c1cf1b3200 100644
--- a/code/modules/lore_codex/codex.dm
+++ b/code/modules/lore_codex/codex.dm
@@ -24,13 +24,14 @@
has the words 'Don't Panic' in small, friendly letters on the cover."
icon_state = "codex"
root_type = /datum/lore/codex/category/main_virgo_lore
+ libcategory = "Reference"
/obj/item/weapon/book/codex/lore/robutt
name = "A Buyer's Guide to Artificial Bodies"
desc = "Recommended reading for the newly cyborgified, new positronics, and the upwardly-mobile FBP."
icon_state = "codex_robutt"
root_type = /datum/lore/codex/category/main_robutts
-
+ libcategory = "Reference"
/obj/item/weapon/book/codex/lore/news
name = "Daedalus Pocket Newscaster"
@@ -38,6 +39,7 @@
icon_state = "newscodex"
w_class = ITEMSIZE_SMALL
root_type = /datum/lore/codex/category/main_news
+ libcategory = "Reference"
/* //VORESTATION REMOVAL
// Combines SOP/Regs/Law
@@ -48,4 +50,5 @@
icon_state = "corp_regs"
root_type = /datum/lore/codex/category/main_corp_regs
throwforce = 5 // Throw the book at 'em.
+ libcategory = "Reference"
*/
diff --git a/code/modules/mob/language/station_vr.dm b/code/modules/mob/language/station_vr.dm
index 56bbad54bd..6e942d50f7 100644
--- a/code/modules/mob/language/station_vr.dm
+++ b/code/modules/mob/language/station_vr.dm
@@ -69,7 +69,7 @@
colour = "enochian" //So fancy
key = "i"
syllables = list("salve","sum","loqui","operatur","iusta","et","permittit","facere","effercio","pluribus","enim","hoc",
- "mihi","wan","six","salve","tartu")
+ "mihi","wan","six","tartu")
machine_understands = FALSE
/datum/language/tajsign
@@ -81,17 +81,28 @@
flags = SIGNLANG | NO_STUTTER | NONVERBAL // | WHITELISTED (YWEdit)
/datum/language/bug
- name = LANGUAGE_VESPINAE
- desc = "A jarring and clicky language developed and used by Vasilissans, it is designed for use with mouthparts and as a result has become a common language for various arthropod species."
- speech_verb = "clicks"
- ask_verb = "chitters"
- exclaim_verb = "rasps"
- colour = "bug"
- key = "x"
- syllables = list("vaur","uyek","uyit","avek","sc'theth","k'ztak","teth","wre'ge","lii","dra'","zo'","ra'","kax'","zz","vh","ik","ak",
+ name = LANGUAGE_VESPINAE
+ desc = "A jarring and clicky language developed and used by Vasilissans, it is designed for use with mouthparts and as a result has become a common language for various arthropod species."
+ speech_verb = "clicks"
+ ask_verb = "chitters"
+ exclaim_verb = "rasps"
+ colour = "bug"
+ key = "x"
+ syllables = list("vaur","uyek","uyit","avek","sc'theth","k'ztak","teth","wre'ge","lii","dra'","zo'","ra'","kax'","zz","vh","ik","ak",
"uhk","zir","sc'orth","sc'er","thc'yek","th'zirk","th'esk","k'ayek","ka'mil","sc'","ik'yir","yol","kig","k'zit","'","'","zrk","krg","isk'yet","na'k",
"sc'azz","th'sc","nil","n'ahk","sc'yeth","aur'sk","iy'it","azzg","a'","i'","o'","u'","a","i","o","u","zz","kr","ak","nrk","tzzk","bz","xic'","k'lax'","histh")
+/datum/language/shadekin
+ name = LANGUAGE_SHADEKIN
+ desc = "Shadekin seem to always know what the others are thinking. This is probably why."
+ speech_verb = "mars"
+ ask_verb = "mars"
+ exclaim_verb = "mars"
+ colour = "changeling"
+ key = "m"
+ machine_understands = FALSE
+ flags = WHITELISTED | HIVEMIND
+
/datum/language/human/slavic
name = LANGUAGE_SLAVIC
desc = "The official language of the Independent Colonial Confederation of Gilgamesh, originally established in 2122 by the short-lived United Slavic Confederation on Earth."
diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm
index 562150c2ee..60f954e27f 100644
--- a/code/modules/mob/living/carbon/human/emote_vr.dm
+++ b/code/modules/mob/living/carbon/human/emote_vr.dm
@@ -44,7 +44,7 @@
//Check if they are physically capable
if(src.sleeping || src.resting || src.buckled || src.weakened || src.restrained() || involved_parts.len < 2)
- src << "
You can't *flip in your current state!"
+ to_chat(src, "
You can't *flip in your current state!")
return 1
else
src.SpinAnimation(7,1)
@@ -78,7 +78,7 @@
/mob/living/carbon/human/proc/toggle_tail_vr(var/setting,var/message = 0)
if(!tail_style || !tail_style.ani_state)
if(message)
- src << "
You don't have a tail that supports this."
+ to_chat(src, "
You don't have a tail that supports this.")
return 0
var/new_wagging = isnull(setting) ? !wagging : setting
@@ -90,7 +90,7 @@
/mob/living/carbon/human/proc/toggle_wing_vr(var/setting,var/message = 0)
if(!wing_style || !wing_style.ani_state)
if(message)
- src << "
You don't have a tail that supports this."
+ to_chat(src, "
You don't have a tail that supports this.")
return 0
var/new_flapping = isnull(setting) ? !flapping : setting
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index dae0723fd4..e1974acf12 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -243,6 +243,12 @@
// this handles mulebots and vehicles
// and now mobs on fire
/mob/living/carbon/human/Crossed(var/atom/movable/AM)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(istype(AM, /mob/living/bot/mulebot))
var/mob/living/bot/mulebot/MB = AM
MB.runOver(src)
@@ -709,7 +715,7 @@
/mob/living/carbon/human/IsAdvancedToolUser(var/silent)
// VOREstation start
if(feral)
- src << "
Your primitive mind can't grasp the concept of that thing."
+ to_chat(src, "
Your primitive mind can't grasp the concept of that thing.")
return 0
// VOREstation end
if(species.has_fine_manipulation)
diff --git a/code/modules/mob/living/carbon/human/human_defines_vr.dm b/code/modules/mob/living/carbon/human/human_defines_vr.dm
index 0af0b1f7d1..d13d44110f 100644
--- a/code/modules/mob/living/carbon/human/human_defines_vr.dm
+++ b/code/modules/mob/living/carbon/human/human_defines_vr.dm
@@ -7,6 +7,46 @@
var/flapping = 0
var/vantag_pref = VANTAG_NONE //What's my status?
var/impersonate_bodytype //For impersonating a bodytype
+ var/ability_flags = 0 //Shadekin abilities/potentially other species-based?
+ var/sensorpref = 5 //Suit sensor loadout pref
- //TFF 5/8/19 - add and set suit sensor setting define to 5 for random setting
- var/sensorpref = 5
\ No newline at end of file
+/mob/living/carbon/human/proc/shadekin_get_energy()
+ var/datum/species/shadekin/SK = species
+
+ if(!istype(SK))
+ return 0
+
+ return SK.get_energy(src)
+
+/mob/living/carbon/human/proc/shadekin_get_max_energy()
+ var/datum/species/shadekin/SK = species
+
+ if(!istype(SK))
+ return 0
+
+ return SK.get_max_energy(src)
+
+/mob/living/carbon/human/proc/shadekin_set_energy(var/new_energy)
+ var/datum/species/shadekin/SK = species
+
+ if(!istype(SK))
+ return 0
+
+ SK.set_energy(src, new_energy)
+
+/mob/living/carbon/human/proc/shadekin_set_max_energy(var/new_max_energy)
+ var/datum/species/shadekin/SK = species
+
+ if(!istype(SK))
+ return 0
+
+ SK.set_max_energy(src, new_max_energy)
+
+/mob/living/carbon/human/proc/shadekin_adjust_energy(var/amount)
+ var/datum/species/shadekin/SK = species
+
+ if(!istype(SK))
+ return 0
+
+ var/new_amount = SK.get_energy(src) + amount
+ SK.set_energy(src, new_amount)
diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm
index 2bdebcbe0a..4bb2770175 100644
--- a/code/modules/mob/living/carbon/human/human_movement.dm
+++ b/code/modules/mob/living/carbon/human/human_movement.dm
@@ -224,6 +224,10 @@
// Handle footstep sounds
/mob/living/carbon/human/handle_footstep(var/turf/T)
+ //VOREStation Edit begin: SHADEKIN
+ if(shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if(!config.footstep_volume || !T.footstep_sounds || !T.footstep_sounds.len)
return
// Future Upgrades - Multi species support
diff --git a/code/modules/mob/living/carbon/human/human_species_vr.dm b/code/modules/mob/living/carbon/human/human_species_vr.dm
index ed27c12e62..897ef6ab14 100644
--- a/code/modules/mob/living/carbon/human/human_species_vr.dm
+++ b/code/modules/mob/living/carbon/human/human_species_vr.dm
@@ -26,6 +26,8 @@
/mob/living/carbon/human/protean/New(var/new_loc)
..(new_loc, "Protean")
-
/mob/living/carbon/human/alraune/New(var/new_loc)
..(new_loc, "Alraune")
+
+/mob/living/carbon/human/shadekin/New(var/new_loc)
+ ..(new_loc, SPECIES_SHADEKIN)
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm
index 2ff9409007..3b0d161dfd 100644
--- a/code/modules/mob/living/carbon/human/life.dm
+++ b/code/modules/mob/living/carbon/human/life.dm
@@ -283,6 +283,12 @@
if(core)
return
+ //VOREStation Addition start: shadekin
+ var/obj/item/organ/internal/brain/shadekin/s_brain = locate() in internal_organs
+ if(s_brain)
+ return
+ //VOREStation Addition end: shadekin
+
var/damage = 0
radiation -= 1 * RADIATION_SPEED_COEFFICIENT
if(prob(25))
@@ -612,6 +618,11 @@
//Stuff like the xenomorph's plasma regen happens here.
species.handle_environment_special(src)
+ //VOREStation Edit begin: SHADEKIN
+ if(shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
+
//Moved pressure calculations here for use in skip-processing check.
var/pressure = environment.return_pressure()
var/adjusted_pressure = calculate_affecting_pressure(pressure)
@@ -876,7 +887,7 @@
for(var/obj/item/I in src)
if(I.contaminated)
if(check_belly(I)) continue //VOREStation Edit
- if(src.species && src.species.get_bodytype() != "Vox")
+ if(src.species && src.species.get_bodytype() != "Vox" && src.species.get_bodytype() != "Shadekin") //VOREStation Edit: shadekin
// This is hacky, I'm so sorry.
if(I != l_hand && I != r_hand) //If the item isn't in your hands, you're probably wearing it. Full damage for you.
total_phoronloss += vsc.plc.CONTAMINATION_LOSS
diff --git a/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm b/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm
new file mode 100644
index 0000000000..f24544e0b2
--- /dev/null
+++ b/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm
@@ -0,0 +1,6 @@
+#define NOT_WHILE_SHIFTED 1
+#define ONLY_WHILE_SHIFTED 2
+#define SHIFTED_OR_NOT 3
+
+#define AB_PHASE_SHIFTED 0x1
+#define AB_SHADE_REGEN 0x2
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm
new file mode 100644
index 0000000000..b034bae104
--- /dev/null
+++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm
@@ -0,0 +1,245 @@
+/datum/species/shadekin
+ name = SPECIES_SHADEKIN
+ name_plural = "Shadekin"
+ icobase = 'icons/mob/human_races/r_shadekin_vr.dmi'
+ deform = 'icons/mob/human_races/r_shadekin_vr.dmi'
+ tail = "tail"
+ icobase_tail = 1
+ blurb = "Very little is known about these creatures. They appear to be largely mammalian in appearance. \
+ Seemingly very rare to encounter, there have been widespread myths of these creatures the galaxy over, \
+ but next to no verifiable evidence to their existence. However, they have recently been more verifiably \
+ documented in the Virgo system, following a mining bombardment of Virgo 3. The crew of NSB Adephagia have \
+ taken to calling these creatures 'Shadekin', and the name has generally stuck and spread. " //TODO: Something that's not wiki copypaste
+ wikilink = "https://wiki.vore-station.net/Shadekin"
+ catalogue_data = list(/datum/category_item/catalogue/fauna/shadekin)
+
+ language = LANGUAGE_SHADEKIN
+ assisted_langs = list()
+ unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws/shadekin, /datum/unarmed_attack/bite/sharp/shadekin)
+ rarity_value = 15 //INTERDIMENSIONAL FLUFFERS
+
+ siemens_coefficient = 0
+ darksight = 10
+
+ slowdown = -0.5
+ item_slowdown_mod = 0.5
+
+ brute_mod = 0.7 // Naturally sturdy.
+ burn_mod = 1.2 // Furry
+
+ warning_low_pressure = 50
+ hazard_low_pressure = -1
+
+ warning_high_pressure = 300
+ hazard_high_pressure = INFINITY
+
+ cold_level_1 = -1 //Immune to cold
+ cold_level_2 = -1
+ cold_level_3 = -1
+
+ heat_level_1 = 850 //Resistant to heat
+ heat_level_2 = 1000
+ heat_level_3 = 1150
+
+ flags = NO_SCAN | NO_MINOR_CUT | NO_INFECT
+ spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE
+
+ reagent_tag = IS_SHADEKIN // for shadekin-unqiue chem interactions
+
+ flesh_color = "#FFC896"
+ blood_color = "#A10808"
+ base_color = "#f0f0f0"
+ color_mult = 1
+
+ has_glowing_eyes = TRUE
+
+ death_message = "phases to somewhere far away!"
+ male_cough_sounds = null
+ female_cough_sounds = null
+ male_sneeze_sound = null
+ female_sneeze_sound = null
+
+ speech_bubble_appearance = "ghost"
+
+ genders = list(PLURAL, NEUTER) //no sexual dymorphism
+ ambiguous_genders = TRUE //but just in case
+
+ virus_immune = 1
+
+ breath_type = null
+ poison_type = null
+
+ vision_flags = SEE_SELF|SEE_MOBS
+ appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_SKIN_COLOR | HAS_EYE_COLOR | HAS_UNDERWEAR
+
+ move_trail = /obj/effect/decal/cleanable/blood/tracks/paw
+
+ has_organ = list(
+ O_HEART = /obj/item/organ/internal/heart,
+ O_VOICE = /obj/item/organ/internal/voicebox,
+ O_LIVER = /obj/item/organ/internal/liver,
+ O_KIDNEYS = /obj/item/organ/internal/kidneys,
+ O_BRAIN = /obj/item/organ/internal/brain/shadekin,
+ O_EYES = /obj/item/organ/internal/eyes,
+ O_STOMACH = /obj/item/organ/internal/stomach,
+ O_INTESTINE = /obj/item/organ/internal/intestine
+ )
+
+ has_limbs = list(
+ BP_TORSO = list("path" = /obj/item/organ/external/chest),
+ BP_GROIN = list("path" = /obj/item/organ/external/groin),
+ BP_HEAD = list("path" = /obj/item/organ/external/head/vr/shadekin),
+ BP_L_ARM = list("path" = /obj/item/organ/external/arm),
+ BP_R_ARM = list("path" = /obj/item/organ/external/arm/right),
+ BP_L_LEG = list("path" = /obj/item/organ/external/leg),
+ BP_R_LEG = list("path" = /obj/item/organ/external/leg/right),
+ BP_L_HAND = list("path" = /obj/item/organ/external/hand),
+ BP_R_HAND = list("path" = /obj/item/organ/external/hand/right),
+ BP_L_FOOT = list("path" = /obj/item/organ/external/foot),
+ BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right)
+ )
+
+ //SHADEKIN-UNIQUE STUFF GOES HERE
+ var/list/shadekin_abilities = list(/datum/power/shadekin/phase_shift,
+ /datum/power/shadekin/regenerate_other,
+ /datum/power/shadekin/create_shade)
+ var/list/shadekin_ability_datums = list()
+
+/datum/species/shadekin/New()
+ ..()
+ for(var/power in shadekin_abilities)
+ var/datum/power/shadekin/SKP = new power(src)
+ shadekin_ability_datums.Add(SKP)
+
+/datum/species/shadekin/handle_death(var/mob/living/carbon/human/H)
+ spawn(1)
+ for(var/obj/item/W in H)
+ H.drop_from_inventory(W)
+ qdel(H)
+
+/datum/species/shadekin/get_bodytype()
+ return SPECIES_SHADEKIN
+
+/datum/species/shadekin/get_random_name()
+ return "shadekin"
+
+/datum/species/shadekin/handle_environment_special(var/mob/living/carbon/human/H)
+ handle_shade(H)
+
+/datum/species/shadekin/can_breathe_water()
+ return TRUE //they dont quite breathe
+
+/datum/species/shadekin/add_inherent_verbs(var/mob/living/carbon/human/H)
+ ..()
+ add_shadekin_abilities(H)
+
+/datum/species/shadekin/proc/add_shadekin_abilities(var/mob/living/carbon/human/H)
+ if(!H.ability_master || !istype(H.ability_master, /obj/screen/movable/ability_master/shadekin))
+ H.ability_master = null
+ H.ability_master = new /obj/screen/movable/ability_master/shadekin(H)
+ for(var/datum/power/shadekin/P in shadekin_ability_datums)
+ if(!(P.verbpath in H.verbs))
+ H.verbs += P.verbpath
+ H.ability_master.add_shadekin_ability(
+ object_given = H,
+ verb_given = P.verbpath,
+ name_given = P.name,
+ ability_icon_given = P.ability_icon_state,
+ arguments = list()
+ )
+
+/datum/species/shadekin/proc/handle_shade(var/mob/living/carbon/human/H)
+ //Shifted kin don't gain/lose energy (and save time if we're at the cap)
+ var/darkness = 1
+ var/dark_gains = 0
+
+ var/turf/T = get_turf(H)
+ if(!T)
+ dark_gains = 0
+ return
+
+ var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0
+ darkness = 1-brightness //Invert
+
+ if(H.ability_flags & AB_PHASE_SHIFTED)
+ dark_gains = 0
+ else
+ //Heal (very) slowly in good darkness
+ if(darkness >= 0.75)
+ H.adjustFireLoss(-0.05)
+ H.adjustBruteLoss(-0.05)
+ H.adjustToxLoss(-0.05)
+ dark_gains = 0.75
+ else
+ dark_gains = 0.25
+
+ set_energy(H, get_energy(H) + dark_gains)
+
+ //Update huds
+ update_shadekin_hud(H)
+
+/datum/species/shadekin/proc/get_energy(var/mob/living/carbon/human/H)
+ var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN]
+
+ if(!istype(shade_organ))
+ return 0
+
+ return shade_organ.dark_energy
+
+/datum/species/shadekin/proc/get_max_energy(var/mob/living/carbon/human/H)
+ var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN]
+
+ if(!istype(shade_organ))
+ return 0
+
+ return shade_organ.max_dark_energy
+
+/datum/species/shadekin/proc/set_energy(var/mob/living/carbon/human/H, var/new_energy)
+ var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN]
+
+ if(!istype(shade_organ))
+ return
+
+ shade_organ.dark_energy = CLAMP(new_energy, 0, get_max_energy(H))
+
+/datum/species/shadekin/proc/set_max_energy(var/mob/living/carbon/human/H, var/new_max_energy)
+ var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN]
+
+ if(!istype(shade_organ))
+ return 0
+
+ shade_organ.max_dark_energy = new_max_energy
+
+/datum/species/shadekin/proc/update_shadekin_hud(var/mob/living/carbon/human/H)
+ var/turf/T = get_turf(H)
+ if(!T)
+ return
+ if(H.shadekin_energy_display)
+ H.shadekin_energy_display.invisibility = 0
+ switch(get_energy(H))
+ if(80 to INFINITY)
+ H.shadekin_energy_display.icon_state = "energy0"
+ if(60 to 80)
+ H.shadekin_energy_display.icon_state = "energy1"
+ if(40 to 60)
+ H.shadekin_energy_display.icon_state = "energy2"
+ if(20 to 40)
+ H.shadekin_energy_display.icon_state = "energy3"
+ if(0 to 20)
+ H.shadekin_energy_display.icon_state = "energy4"
+ if(H.shadekin_dark_display)
+ H.shadekin_dark_display.invisibility = 0
+ var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0
+ var/darkness = 1-brightness //Invert
+ switch(darkness)
+ if(0.80 to 1.00)
+ H.shadekin_dark_display.icon_state = "dark2"
+ if(0.60 to 0.80)
+ H.shadekin_dark_display.icon_state = "dark1"
+ if(0.40 to 0.60)
+ H.shadekin_dark_display.icon_state = "dark"
+ if(0.20 to 0.40)
+ H.shadekin_dark_display.icon_state = "dark-1"
+ if(0.00 to 0.20)
+ H.shadekin_dark_display.icon_state = "dark-2"
+ return
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm
new file mode 100644
index 0000000000..485b988445
--- /dev/null
+++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm
@@ -0,0 +1,307 @@
+/datum/power/shadekin
+
+/////////////////////
+/// PHASE SHIFT ///
+/////////////////////
+//Visual effect for phase in/out
+/obj/effect/temp_visual/shadekin
+ randomdir = FALSE
+ duration = 5
+ icon = 'icons/mob/vore_shadekin.dmi'
+
+/obj/effect/temp_visual/shadekin/phase_in
+ icon_state = "tp_in"
+
+/obj/effect/temp_visual/shadekin/phase_out
+ icon_state = "tp_out"
+
+/datum/power/shadekin/phase_shift
+ name = "Phase Shift (100)"
+ desc = "Shift yourself out of alignment with realspace to travel quickly areas."
+ verbpath = /mob/living/carbon/human/proc/phase_shift
+ ability_icon_state = "tech_passwall"
+
+/mob/living/carbon/human/proc/phase_shift()
+ set name = "Phase Shift (100)"
+ set desc = "Shift yourself out of alignment with realspace to travel quickly areas."
+ set category = "Shadekin"
+
+ var/ability_cost = 100
+
+ var/datum/species/shadekin/SK = species
+ if(!istype(SK))
+ to_chat(src, "
Only a shadekin can use that!")
+ return FALSE
+ else if(stat)
+ to_chat(src, "
Can't use that ability in your state!")
+ return FALSE
+ else if(shadekin_get_energy() < ability_cost && !(ability_flags & AB_PHASE_SHIFTED))
+ to_chat(src, "
Not enough energy for that ability!")
+ return FALSE
+
+ if(!(ability_flags & AB_PHASE_SHIFTED))
+ shadekin_adjust_energy(-ability_cost)
+ playsound(src, 'sound/effects/stealthoff.ogg', 75, 1)
+
+ var/turf/T = get_turf(src)
+ if(!T.CanPass(src,T) || loc != T)
+ to_chat(src,"
You can't use that here!")
+ return FALSE
+
+ forceMove(T)
+ var/original_canmove = canmove
+ SetStunned(0)
+ SetWeakened(0)
+ if(buckled)
+ buckled.unbuckle_mob()
+ if(pulledby)
+ pulledby.stop_pulling()
+ stop_pulling()
+ canmove = FALSE
+
+ //Shifting in
+ if(ability_flags & AB_PHASE_SHIFTED)
+ ability_flags &= ~AB_PHASE_SHIFTED
+ name = real_name
+ for(var/belly in vore_organs)
+ var/obj/belly/B = belly
+ B.escapable = initial(B.escapable)
+
+ //overlays.Cut()
+ invisibility = initial(invisibility)
+ see_invisible = initial(see_invisible)
+ incorporeal_move = initial(incorporeal_move)
+ density = initial(density)
+ force_max_speed = initial(force_max_speed)
+ update_icon()
+
+ //Cosmetics mostly
+ var/obj/effect/temp_visual/shadekin/phase_in/phaseanim = new /obj/effect/temp_visual/shadekin/phase_in(src.loc)
+ phaseanim.dir = dir
+ alpha = 0
+ custom_emote(1,"phases in!")
+ sleep(5) //The duration of the TP animation
+ canmove = original_canmove
+ alpha = initial(alpha)
+
+ //Potential phase-in vore
+ if(can_be_drop_pred) //Toggleable in vore panel
+ var/list/potentials = living_mobs(0)
+ if(potentials.len)
+ var/mob/living/target = pick(potentials)
+ if(istype(target) && vore_selected)
+ target.forceMove(vore_selected)
+ to_chat(target,"
\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!")
+
+ //Affect nearby lights
+ var/destroy_lights = 0
+
+ for(var/obj/machinery/light/L in machines)
+ if(L.z != z || get_dist(src,L) > 10)
+ continue
+
+ if(prob(destroy_lights))
+ spawn(rand(5,25))
+ L.broken()
+ else
+ L.flicker(10)
+ //Shifting out
+ else
+ ability_flags |= AB_PHASE_SHIFTED
+ custom_emote(1,"phases out!")
+ name = "Something"
+
+ for(var/belly in vore_organs)
+ var/obj/belly/B = belly
+ B.escapable = FALSE
+
+ var/obj/effect/temp_visual/shadekin/phase_out/phaseanim = new /obj/effect/temp_visual/shadekin/phase_out(src.loc)
+ phaseanim.dir = dir
+ alpha = 0
+ sleep(5)
+ invisibility = INVISIBILITY_LEVEL_TWO
+ see_invisible = INVISIBILITY_LEVEL_TWO
+ //overlays.Cut()
+ update_icon()
+ alpha = 127
+
+ canmove = original_canmove
+ incorporeal_move = TRUE
+ density = FALSE
+ force_max_speed = TRUE
+
+/mob/living/carbon/human/UnarmedAttack()
+ if(shadekin_phasing_check())
+ return FALSE //Nope.
+
+ . = ..()
+
+/mob/living/carbon/human/can_fall()
+ if(shadekin_phasing_check())
+ return FALSE //Nope!
+
+ return ..()
+
+/mob/living/carbon/human/zMove(direction)
+ if(shadekin_phasing_check())
+ var/turf/destination = (direction == UP) ? GetAbove(src) : GetBelow(src)
+ if(destination)
+ forceMove(destination)
+ return TRUE //Yup.
+
+ return ..()
+
+/mob/proc/shadekin_phasing_check()
+ var/mob/living/simple_mob/shadekin/s_SK = src
+ if(istype(s_SK))
+ if(s_SK.ability_flags & AB_PHASE_SHIFTED)
+ return TRUE
+ var/mob/living/carbon/human/h_SK = src
+ if(istype(h_SK))
+ if(h_SK.ability_flags & AB_PHASE_SHIFTED)
+ return TRUE
+ return FALSE
+
+/*
+/mob/living/carbon/human/MouseDrop_T(atom/dropping, mob/user)
+ if(ability_flags & AB_PHASE_SHIFTED)
+ return FALSE //Nope!
+
+ return ..()
+*/
+
+
+//////////////////////////
+/// REGENERATE OTHER ///
+//////////////////////////
+/datum/power/shadekin/regenerate_other
+ name = "Regenerate Other (50)"
+ desc = "Spend energy to heal physical wounds in another creature."
+ verbpath = /mob/living/carbon/human/proc/regenerate_other
+ ability_icon_state = "tech_biomedaura"
+
+/mob/living/carbon/human/proc/regenerate_other()
+ set name = "Regenerate Other (50)"
+ set desc = "Spend energy to heal physical wounds in another creature."
+ set category = "Shadekin"
+
+ var/ability_cost = 50
+
+ var/datum/species/shadekin/SK = species
+ if(!istype(SK))
+ to_chat(src, "
Only a shadekin can use that!")
+ return FALSE
+ else if(stat)
+ to_chat(src, "
Can't use that ability in your state!")
+ return FALSE
+ else if(shadekin_get_energy() < ability_cost)
+ to_chat(src, "
Not enough energy for that ability!")
+ return FALSE
+ else if(ability_flags & AB_PHASE_SHIFTED)
+ to_chat(src, "
You can't use that while phase shifted!")
+ return FALSE
+
+ var/list/viewed = oview(1)
+ var/list/targets = list()
+ for(var/mob/living/L in viewed)
+ targets += L
+ if(!targets.len)
+ to_chat(src,"
Nobody nearby to mend!")
+ return FALSE
+
+ var/mob/living/target = input(src,"Pick someone to mend:","Mend Other") as null|anything in targets
+ if(!target)
+ return FALSE
+
+ target.add_modifier(/datum/modifier/shadekin/heal_boop,1 MINUTE)
+ playsound(src, 'sound/effects/EMPulse.ogg', 75, 1)
+ shadekin_adjust_energy(-ability_cost)
+ visible_message("
\The [src] gently places a hand on \the [target]...")
+ face_atom(target)
+ return TRUE
+
+/datum/modifier/shadekin/heal_boop
+ name = "Shadekin Regen"
+ desc = "You feel serene and well rested."
+ mob_overlay_state = "green_sparkles"
+
+ on_created_text = "
Sparkles begin to appear around you, and all your ills seem to fade away."
+ on_expired_text = "
The sparkles have faded, although you feel much healthier than before."
+ stacks = MODIFIER_STACK_EXTEND
+
+/datum/modifier/shadekin/heal_boop/tick()
+ if(!holder.getBruteLoss() && !holder.getFireLoss() && !holder.getToxLoss() && !holder.getOxyLoss() && !holder.getCloneLoss()) // No point existing if the spell can't heal.
+ expire()
+ return
+ holder.adjustBruteLoss(-2)
+ holder.adjustFireLoss(-2)
+ holder.adjustToxLoss(-2)
+ holder.adjustOxyLoss(-2)
+ holder.adjustCloneLoss(-2)
+
+
+//////////////////////
+/// CREATE SHADE ///
+//////////////////////
+/datum/power/shadekin/create_shade
+ name = "Create Shade (25)"
+ desc = "Create a field of darkness that follows you."
+ verbpath = /mob/living/carbon/human/proc/create_shade
+ ability_icon_state = "tech_dispelold"
+
+/mob/living/carbon/human/proc/create_shade()
+ set name = "Create Shade (25)"
+ set desc = "Create a field of darkness that follows you."
+ set category = "Shadekin"
+
+ var/ability_cost = 25
+
+ var/datum/species/shadekin/SK = species
+ if(!istype(SK))
+ to_chat(src, "
Only a shadekin can use that!")
+ return FALSE
+ else if(stat)
+ to_chat(src, "
Can't use that ability in your state!")
+ return FALSE
+ else if(shadekin_get_energy() < ability_cost)
+ to_chat(src, "
Not enough energy for that ability!")
+ return FALSE
+ else if(ability_flags & AB_PHASE_SHIFTED)
+ to_chat(src, "
You can't use that while phase shifted!")
+ return FALSE
+
+ playsound(src, 'sound/effects/bamf.ogg', 75, 1)
+
+ add_modifier(/datum/modifier/shadekin/create_shade,20 SECONDS)
+ shadekin_adjust_energy(-ability_cost)
+ return TRUE
+
+/datum/modifier/shadekin/create_shade
+ name = "Shadekin Shadegen"
+ desc = "Darkness envelops you."
+ mob_overlay_state = ""
+
+ on_created_text = "
You drag part of The Dark into realspace, enveloping yourself."
+ on_expired_text = "
You lose your grasp on The Dark and realspace reasserts itself."
+ stacks = MODIFIER_STACK_EXTEND
+ var/mob/living/simple_mob/shadekin/my_kin
+
+/datum/modifier/shadekin/create_shade/tick()
+ if(my_kin.ability_flags & AB_PHASE_SHIFTED)
+ expire()
+
+/datum/modifier/shadekin/create_shade/on_applied()
+ my_kin = holder
+ holder.glow_toggle = TRUE
+ holder.glow_range = 8
+ holder.glow_intensity = -10
+ holder.glow_color = "#FFFFFF"
+ holder.set_light(8, -10, "#FFFFFF")
+
+/datum/modifier/shadekin/create_shade/on_expire()
+ holder.glow_toggle = initial(holder.glow_toggle)
+ holder.glow_range = initial(holder.glow_range)
+ holder.glow_intensity = initial(holder.glow_intensity)
+ holder.glow_color = initial(holder.glow_color)
+ holder.set_light(0)
+ my_kin = null
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm
new file mode 100644
index 0000000000..5017cff724
--- /dev/null
+++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm
@@ -0,0 +1,59 @@
+/obj/screen/shadekin
+ icon = 'icons/mob/shadekin_hud.dmi'
+ invisibility = 101
+
+/obj/screen/shadekin/darkness
+ name = "darkness"
+ icon_state = "dark"
+ alpha = 150
+
+/obj/screen/shadekin/energy
+ name = "energy"
+ icon_state = "energy0"
+ alpha = 150
+
+
+
+
+/obj/screen/movable/ability_master/shadekin
+ name = "Shadekin Abilities"
+ icon = 'icons/mob/screen_spells.dmi'
+ icon_state = "grey_spell_ready"
+ ability_objects = list()
+ showing = 0
+
+ open_state = "master_open"
+ closed_state = "master_closed"
+
+ screen_loc = ui_spell_master
+
+/obj/screen/movable/ability_master/shadekin/update_abilities(forced = 0, mob/user) //Different proc to prevent indexing
+ update_icon()
+ if(user && user.client)
+ if(!(src in user.client.screen))
+ user.client.screen += src
+ for(var/obj/screen/ability/ability in ability_objects)
+ ability.update_icon(forced)
+
+/obj/screen/ability/verb_based/shadekin
+ icon_state = "grey_spell_base"
+ background_base_state = "grey"
+
+/obj/screen/movable/ability_master/proc/add_shadekin_ability(var/object_given, var/verb_given, var/name_given, var/ability_icon_given, var/arguments)
+ if(!object_given)
+ message_admins("ERROR: add_shadekin_ability() was not given an object in its arguments.")
+ if(!verb_given)
+ message_admins("ERROR: add_shadekin_ability() was not given a verb/proc in its arguments.")
+ if(get_ability_by_proc_ref(verb_given))
+ return // Duplicate
+ var/obj/screen/ability/verb_based/shadekin/A = new /obj/screen/ability/verb_based/shadekin()
+ A.ability_master = src
+ A.object_used = object_given
+ A.verb_to_call = verb_given
+ A.ability_icon_state = ability_icon_given
+ A.name = name_given
+ if(arguments)
+ A.arguments_to_use = arguments
+ ability_objects.Add(A)
+ if(my_mob.client)
+ toggle_open(2) //forces the icons to refresh on screen
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/species_attack_vr.dm b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm
index 28dfb0720e..2742b66a60 100644
--- a/code/modules/mob/living/carbon/human/species/species_attack_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm
@@ -46,4 +46,18 @@
if(5)
user.visible_message("
[user]'s fangs sink deep into [target]'s [affecting.name], one of their veins bulging outwards from the sudden fluid pumped into it!")
to_chat(target, "
Your [affecting.name] feels like it's going to burst! Moments later, you simply can't feel your [affecting.name] any longer, the numbness slowly spreading throughout your body!")
- target.bloodstr.add_reagent("numbenzyme",attack_damage)
\ No newline at end of file
+ target.bloodstr.add_reagent("numbenzyme",attack_damage)
+
+/datum/unarmed_attack/claws/shadekin
+ var/energy_gain = 3
+
+/datum/unarmed_attack/claws/shadekin/show_attack(var/mob/living/carbon/human/user, var/mob/living/carbon/human/target, var/zone, var/attack_damage)
+ ..()
+ user.shadekin_adjust_energy(energy_gain)
+
+/datum/unarmed_attack/bite/sharp/shadekin
+ var/energy_gain = 3
+
+/datum/unarmed_attack/bite/sharp/shadekin/show_attack(var/mob/living/carbon/human/user, var/mob/living/carbon/human/target, var/zone, var/attack_damage)
+ ..()
+ user.shadekin_adjust_energy(energy_gain)
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm
index ee402d0f73..beeba0fd45 100644
--- a/code/modules/mob/living/carbon/human/species/station/seromi.dm
+++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm
@@ -33,7 +33,7 @@
flesh_color = "#5F7BB0"
base_color = "#001144"
tail = "seromitail"
- //tail_hair = "feathers" //TESHARI TEMPORARY REMOVAL
+ //tail_hair = "feathers" //VORESTATION TESHARI TEMPORARY REMOVAL
reagent_tag = IS_TESHARI
move_trail = /obj/effect/decal/cleanable/blood/tracks/paw
diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm
index 2139e56b43..1540373d68 100644
--- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm
@@ -167,13 +167,13 @@
switch(halpick)
if(0 to 15) //15% chance
//Screwy HUD
- //src << "Screwy HUD"
+ //to_chat(src, "Screwy HUD")
hal_screwyhud = pick(1,2,3,3,4,4)
spawn(rand(100,250))
hal_screwyhud = 0
if(16 to 25) //10% chance
//Strange items
- //src << "Traitor Items"
+ //to_chat(src, "Traitor Items")
if(!halitem)
halitem = new
var/list/slots_free = list(ui_lhand,ui_rhand)
@@ -221,7 +221,7 @@
halitem = null
if(26 to 35) //10% chance
//Flashes of danger
- //src << "Danger Flash"
+ //to_chat(src, "Danger Flash")
if(!halimage)
var/list/possible_points = list()
for(var/turf/simulated/floor/F in view(src,world.view))
@@ -231,13 +231,13 @@
switch(rand(1,3))
if(1)
- //src << "Space"
+ //to_chat(src, "Space")
halimage = image('icons/turf/space.dmi',target,"[rand(1,25)]",TURF_LAYER)
if(2)
- //src << "Fire"
+ //to_chat(src, "Fire")
halimage = image('icons/effects/fire.dmi',target,"1",TURF_LAYER)
if(3)
- //src << "C4"
+ //to_chat(src, "C4")
halimage = image('icons/obj/assemblies.dmi',target,"plastic-explosive2",OBJ_LAYER+0.01)
@@ -248,7 +248,7 @@
if(36 to 55) //20% chance
//Strange audio
- //src << "Strange Audio"
+ //to_chat(src, "Strange Audio")
switch(rand(1,12))
if(1) src << 'sound/machines/airlock.ogg'
if(2)
@@ -282,7 +282,7 @@
src << pick(creepyasssounds)
if(56 to 60) //5% chance
//Flashes of danger
- //src << "Danger Flash"
+ //to_chat(src, "Danger Flash")
if(!halbody)
var/list/possible_points = list()
for(var/turf/simulated/floor/F in view(src,world.view))
@@ -358,7 +358,7 @@
return
if(stat || paralysis || stunned || weakened || lying || restrained() || buckled)
- src << "You cannot bite anyone in your current state!"
+ to_chat(src, "You cannot bite anyone in your current state!")
return
var/list/choices = list()
@@ -376,10 +376,10 @@
if(last_special > world.time) return
if(stat || paralysis || stunned || weakened || lying || restrained() || buckled)
- src << "You cannot bite in your current state."
+ to_chat(src, "You cannot bite in your current state.")
return
if(B.vessel.total_volume <= 0 || B.isSynthetic()) //Do they have any blood in the first place, and are they synthetic?
- src << "
There appears to be no blood in this prey..."
+ to_chat(src, "
There appears to be no blood in this prey...")
return
last_special = world.time + 600
diff --git a/code/modules/mob/living/carbon/lick_wounds.dm b/code/modules/mob/living/carbon/lick_wounds.dm
index 17ad746d4d..a64788810d 100644
--- a/code/modules/mob/living/carbon/lick_wounds.dm
+++ b/code/modules/mob/living/carbon/lick_wounds.dm
@@ -13,7 +13,7 @@
if ( ! (istype(src, /mob/living/carbon/human) || \
istype(src, /mob/living/silicon)) )
- src << "
If you even have a tongue, it doesn't work that way."
+ to_chat(src, "
If you even have a tongue, it doesn't work that way.")
return
if (istype(M, /mob/living/carbon/human))
diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm
index e1cb92ada3..74f67335fa 100644
--- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm
@@ -55,6 +55,12 @@
desc = "A small [body_color] rodent, often seen hiding in maintenance areas and making a nuisance of itself."
/mob/living/simple_mob/animal/passive/mouse/Crossed(AM as mob|obj)
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
if( ishuman(AM) )
if(!stat)
var/mob/M = AM
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm
index b330e8fcb0..f8ad8a2a4c 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm
@@ -13,6 +13,9 @@
health = 30
movement_cooldown = 0
+ see_in_dark = 10
+ seedarkness = FALSE
+
min_oxy = 0
max_oxy = 0
min_tox = 0
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm
index 6990623043..40355f7ab0 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm
@@ -91,7 +91,7 @@
return
if(!my_kin.mend_other())
my_kin.energy += cost //Refund due to abort
-
+/*
/datum/modifier/shadekin/heal_boop
name = "Shadekin Regen"
desc = "You feel serene and well rested."
@@ -110,6 +110,7 @@
holder.adjustToxLoss(-2)
holder.adjustOxyLoss(-2)
holder.adjustCloneLoss(-2)
+*/
/////////////////////////////////////////////////////////////////
/obj/effect/shadekin_ability/create_shade
ability_name = "Create Shade"
@@ -122,6 +123,7 @@
if(!..())
return
my_kin.add_modifier(/datum/modifier/shadekin/create_shade,20 SECONDS)
+/*
/datum/modifier/shadekin/create_shade
name = "Shadekin Shadegen"
desc = "Darkness envelops you."
@@ -151,6 +153,7 @@
holder.glow_color = initial(holder.glow_color)
holder.set_light(0)
my_kin = null
+*/
/*
/////////////////////////////////////////////////////////////////
/obj/effect/shadekin_ability/energy_feast
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm
index 71d21d9377..fcf62fe85a 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm
@@ -1,8 +1,3 @@
-/datum/category_item/catalogue/fauna/shadekin //TODO: VIRGO_LORE_WRITING_WIP
- name = "Sapients - Shadekin"
- desc = ""
- value = CATALOGUER_REWARD_EASY
-
/mob/living/simple_mob/shadekin //Spawning the prototype spawns a random one, see initialize()
name = "shadekin"
desc = "Some sort of fluffer. Big ears, long tail."
@@ -449,14 +444,3 @@
say_maybe_target = list("...mar?")
say_got_target = list("MAR!!!")
//reactions = list("Mar?" = "Marrr!", "Mar!" = "Marrr???", "Mar." = "Marrr.")
-
-/datum/language/shadekin
- name = "Shadekin Empathy"
- desc = "Shadekin seem to always know what the others are thinking. This is probably why."
- colour = "changeling"
- speech_verb = "mars"
- ask_verb = "mars"
- exclaim_verb = "mars"
- key = "m"
- machine_understands = 0
- flags = WHITELISTED | HIVEMIND
diff --git a/code/modules/mob/mob_defines_vr.dm b/code/modules/mob/mob_defines_vr.dm
index 806da9a317..70cd778e8e 100644
--- a/code/modules/mob/mob_defines_vr.dm
+++ b/code/modules/mob/mob_defines_vr.dm
@@ -4,3 +4,6 @@
var/mob/temporary_form // For holding onto a temporary form
var/disconnect_time = null //Time of client loss, set by Logout(), for timekeeping
+
+ var/obj/screen/shadekin/darkness/shadekin_dark_display = null
+ var/obj/screen/shadekin/energy/shadekin_energy_display = null
\ No newline at end of file
diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm
index a27d472baf..c4dd1b86b0 100644
--- a/code/modules/mob/mob_movement.dm
+++ b/code/modules/mob/mob_movement.dm
@@ -385,6 +385,11 @@
///Return 1 for movement 0 for none
/mob/proc/Process_Spacemove(var/check_drift = 0)
+ //VOREStation Edit begin: SHADEKIN
+ if(shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
+
if(!Check_Dense_Object()) //Nothing to push off of so end here
update_floating(0)
return 0
diff --git a/code/modules/mob/new_player/sprite_accessories_vr.dm b/code/modules/mob/new_player/sprite_accessories_vr.dm
index 0ab4cc128b..2c316175db 100644
--- a/code/modules/mob/new_player/sprite_accessories_vr.dm
+++ b/code/modules/mob/new_player/sprite_accessories_vr.dm
@@ -8,7 +8,7 @@
//var/icon_add = 'icons/mob/human_face.dmi' //Already defined in sprite_accessories.dm line 49.
var/color_blend_mode = ICON_MULTIPLY
- species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This lets all races use the default hairstyles.
+ species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN) //This lets all races use the default hairstyles.
astolfo
name = "Astolfo"
@@ -474,6 +474,41 @@
species_allowed = list(SPECIES_XENOHYBRID)
gender = NEUTER
+// Shadekin stuffs
+
+ shadekin_hair_short
+ name = "Shadekin Short Hair"
+ icon = 'icons/mob/human_face_vr.dmi'
+ icon_add = 'icons/mob/human_face_vr_add.dmi'
+ icon_state = "shadekin_short"
+ species_allowed = list(SPECIES_SHADEKIN)
+ gender = NEUTER
+
+ shadekin_hair_poofy
+ name = "Shadekin Poofy Hair"
+ icon = 'icons/mob/human_face_vr.dmi'
+ icon_add = 'icons/mob/human_face_vr_add.dmi'
+ icon_state = "shadekin_poofy"
+ species_allowed = list(SPECIES_SHADEKIN)
+ gender = NEUTER
+
+ shadekin_hair_long
+ name = "Shadekin Long Hair"
+ icon = 'icons/mob/human_face_vr.dmi'
+ icon_add = 'icons/mob/human_face_vr_add.dmi'
+ icon_state = "shadekin_long"
+ species_allowed = list(SPECIES_SHADEKIN)
+ gender = NEUTER
+
+ shadekin_hair_rivyr
+ name = "Rivyr Hair"
+ icon = 'icons/mob/human_face_vr.dmi'
+ icon_add = 'icons/mob/human_face_vr_add.dmi'
+ icon_state = "shadekin_rivyr"
+ ckeys_allowed = list("verysoft")
+ species_allowed = list(SPECIES_SHADEKIN)
+ gender = NEUTER
+
/datum/sprite_accessory/facial_hair
icon = 'icons/mob/human_face_or_vr.dmi'
var/color_blend_mode = ICON_MULTIPLY
@@ -485,6 +520,12 @@
gender = NEUTER
species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This needed to be manually defined, apparantly.
+ neck_fluff
+ name = "Neck Fluff"
+ icon = 'icons/mob/human_face_or_vr.dmi'
+ icon_state = "facial_neckfluff"
+ gender = NEUTER
+ species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST)
vulp_none
name = "None"
@@ -549,15 +590,6 @@
species_allowed = list(SPECIES_VULPKANIN)
gender = NEUTER
-//Special hairstyles
-/datum/sprite_accessory/ears/inkling
- name = "colorable mature inkling hair"
- desc = ""
- icon = 'icons/mob/human_face_vr.dmi'
- icon_state = "inkling-colorable"
- color_blend_mode = ICON_MULTIPLY
- do_colouration = 1
-
//VOREStation Body Markings and Overrides
//Reminder: BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD
@@ -1064,7 +1096,7 @@
name = "Heterochromia"
icon_state = "heterochromia"
body_parts = list(BP_HEAD)
- species_allowed = list(SPECIES_HUMAN, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This lets all races use the default hairstyles.
+ species_allowed = list(SPECIES_HUMAN, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN) //This lets all races use the default hairstyles.
werewolf_nose
name = "Werewolf nose"
@@ -1096,4 +1128,11 @@
icon_state = "werewolf"
color_blend_mode = ICON_MULTIPLY
body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND)
- species_allowed = list(SPECIES_WEREBEAST)
\ No newline at end of file
+ species_allowed = list(SPECIES_WEREBEAST)
+
+ shadekin_snoot
+ name = "Shadekin Snoot"
+ icon_state = "shadekin-snoot"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+ species_allowed = list(SPECIES_SHADEKIN)
\ No newline at end of file
diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm
index bd5b516f9d..3fe73e3475 100644
--- a/code/modules/mob/say_vr.dm
+++ b/code/modules/mob/say_vr.dm
@@ -23,7 +23,7 @@
/mob/proc/custom_emote_vr(var/m_type=1,var/message = null) //This would normally go in emote.dm
if(stat || !use_me && usr == src)
- src << "You are unable to emote."
+ to_chat(src, "You are unable to emote.")
return
var/muzzled = is_muzzled()
diff --git a/code/modules/nifsoft/software/13_soulcatcher.dm b/code/modules/nifsoft/software/13_soulcatcher.dm
index 9f46eac243..48ca432420 100644
--- a/code/modules/nifsoft/software/13_soulcatcher.dm
+++ b/code/modules/nifsoft/software/13_soulcatcher.dm
@@ -369,7 +369,7 @@
return
if (src.client)
if (client.prefs.muted & MUTE_IC)
- src << "
You cannot send IC messages (muted)."
+ to_chat(src, "
You cannot send IC messages (muted).")
return
if (stat)
return
diff --git a/code/modules/organs/subtypes/shadekin.dm b/code/modules/organs/subtypes/shadekin.dm
new file mode 100644
index 0000000000..d130102d91
--- /dev/null
+++ b/code/modules/organs/subtypes/shadekin.dm
@@ -0,0 +1,5 @@
+/obj/item/organ/internal/brain/shadekin
+ can_assist = FALSE
+
+ var/dark_energy = 100
+ var/max_dark_energy = 100
\ No newline at end of file
diff --git a/code/modules/organs/subtypes/standard_vr.dm b/code/modules/organs/subtypes/standard_vr.dm
index 8c123ed5ef..16f49361ae 100644
--- a/code/modules/organs/subtypes/standard_vr.dm
+++ b/code/modules/organs/subtypes/standard_vr.dm
@@ -46,7 +46,6 @@
if(hair_style.do_colouration && islist(h_col) && h_col.len >= 3)
hair_s.Blend(rgb(h_col[1], h_col[2], h_col[3]), ICON_MULTIPLY)
overlays |= image(hair_s, "pixel_y" = head_offset)
-
return mob_icon
/obj/item/organ/external/head/vr
@@ -61,4 +60,11 @@
/obj/item/organ/external/head/vr/werebeast
eye_icons_vr = 'icons/mob/werebeast_face_vr.dmi'
eye_icon_vr = "werebeast_eyes"
- head_offset = 6
\ No newline at end of file
+ head_offset = 6
+
+/obj/item/organ/external/head/vr/shadekin
+ cannot_gib = 1
+ cannot_amputate = 1
+
+ eye_icons_vr = 'icons/mob/human_face_vr.dmi'
+ eye_icon_vr = "eyes_shadekin"
diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm
index f3603a783d..b3b70aa7af 100644
--- a/code/modules/projectiles/projectile.dm
+++ b/code/modules/projectiles/projectile.dm
@@ -219,6 +219,12 @@
Range()
/obj/item/projectile/Crossed(atom/movable/AM) //A mob moving on a tile with a projectile is hit by it.
+ //VOREStation Edit begin: SHADEKIN
+ var/mob/SK = AM
+ if(istype(SK))
+ if(SK.shadekin_phasing_check())
+ return
+ //VOREStation Edit end: SHADEKIN
..()
if(isliving(AM) && !(pass_flags & PASSMOB))
var/mob/living/L = AM
diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm
index 48afe19b7e..b077dd52c1 100644
--- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm
+++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm
@@ -68,17 +68,16 @@
switch(alien)
if(IS_SKRELL)
M.adjustToxLoss(0.5 * removed)
- return
if(IS_TESHARI)
..(M, alien, removed*1.2) // Teshari get a bit more nutrition from meat.
- return
if(IS_UNATHI)
..(M, alien, removed*2.25) //Unathi get most of their nutrition from meat.
//VOREStation Edit Start
if(IS_CHIMERA)
..(M, alien, removed*4) //Xenochimera are obligate carnivores.
//VOREStation Edit End
- ..()
+ else
+ ..()
/datum/reagent/nutriment/protein/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
if(alien && alien == IS_SKRELL)
diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm
index b904067813..5d7fc8992e 100644
--- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm
+++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm
@@ -37,6 +37,8 @@
strength = 50
color = "#d3785d"
metabolism = REM * 2.5 // about right for mixing nutriment and ethanol.
+ var/alt_nutriment_factor = 5 //half as much as protein since it's half protein.
+ //using a new variable instead of nutriment_factor so we can call ..() without that adding nutrition for us without taking factors for protein into account
glass_name = "Monster Tamer"
glass_desc = "This looks like a vaguely-alcoholic slurry of meat. Gross."
@@ -45,7 +47,18 @@
..()
if(M.species.gets_food_nutrition) //it's still food!
- M.nutrition += (nutriment_factor * removed)/2 // For hunger and fatness
+ switch(alien)
+ if(IS_DIONA) //Diona don't get any nutrition from nutriment or protein.
+ if(IS_SKRELL)
+ M.adjustToxLoss(0.25 * removed) //Equivalent to half as much protein, since it's half protein.
+ if(IS_TESHARI)
+ M.nutrition += (alt_nutriment_factor * 1.2 * removed) //Give them the same nutrition they would get from protein.
+ if(IS_UNATHI)
+ M.nutrition += (alt_nutriment_factor * 1.125 * removed) //Give them the same nutrition they would get from protein.
+ //Takes into account the 0.5 factor for all nutriment which is applied on top of the 2.25 factor for protein.
+ //Chimera don't need their own case here since their factors for nutriment and protein cancel out.
+ else
+ M.nutrition += (alt_nutriment_factor * removed)
if(ishuman(M))
var/mob/living/carbon/human/H = M
if(H.feral > 0 && H.nutrition > 100 && H.traumatic_shock < min(60, H.nutrition/10) && H.jitteriness < 100) // same check as feral triggers to stop them immediately re-feralling
@@ -54,3 +67,11 @@
H.feral = 0
H << "
Your mind starts to clear, soothed into a state of clarity as your senses return."
log_and_message_admins("is no longer feral.", H)
+
+/datum/reagent/ethanol/monstertamer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
+ ..()
+ if(alien == IS_SKRELL)
+ M.adjustToxLoss(removed) //Equivalent to half as much protein, since it's half protein.
+ if(M.species.gets_food_nutrition)
+ if(alien == IS_SLIME || alien == IS_CHIMERA) //slimes and chimera can get nutrition from injected nutriment and protein
+ M.nutrition += (alt_nutriment_factor * removed)
\ No newline at end of file
diff --git a/code/modules/resleeving/infomorph.dm b/code/modules/resleeving/infomorph.dm
index 6166bb6456..099f3c0a95 100644
--- a/code/modules/resleeving/infomorph.dm
+++ b/code/modules/resleeving/infomorph.dm
@@ -154,7 +154,7 @@ var/list/infomorph_emotions = list(
// 20% chance to kill
src.silence_time = world.timeofday + 120 * 10 // Silence for 2 minutes
- src << "
Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete."
+ to_chat(src, "
Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete.")
if(prob(20))
var/turf/T = get_turf_or_move(src.loc)
for (var/mob/M in viewers(T))
@@ -337,7 +337,7 @@ var/list/infomorph_emotions = list(
resting = !resting
icon_state = resting ? "[chassis]_rest" : "[chassis]"
- src << "
You are now [resting ? "resting" : "getting up"]"
+ to_chat(src, "
You are now [resting ? "resting" : "getting up"]")
canmove = !resting
@@ -384,11 +384,11 @@ var/list/infomorph_emotions = list(
if(idaccessible == 0)
idaccessible = 1
- src << "
You allow access modifications."
+ to_chat(src, "
You allow access modifications.")
else
idaccessible = 0
- src << "
You block access modfications."
+ to_chat(src, "
You block access modfications.")
/mob/living/silicon/infomorph/verb/wipe_software()
set name = "Suspend Self"
@@ -423,7 +423,7 @@ var/list/infomorph_emotions = list(
/mob/living/silicon/infomorph/say(var/msg)
if(silence_time)
- src << "
Communication circuits remain uninitialized."
+ to_chat(src, "
Communication circuits remain uninitialized.")
else
..(msg)
@@ -594,7 +594,7 @@ var/global/list/default_infomorph_software = list()
if(silence_time)
if(world.timeofday >= silence_time)
silence_time = null
- src << "
Communication circuit reinitialized. Speech and messaging functionality restored."
+ to_chat(src, "
Communication circuit reinitialized. Speech and messaging functionality restored.")
handle_statuses()
diff --git a/code/modules/vore/appearance/spider_taur_powers_vr.dm b/code/modules/vore/appearance/spider_taur_powers_vr.dm
index 9535c91f19..e625491a48 100644
--- a/code/modules/vore/appearance/spider_taur_powers_vr.dm
+++ b/code/modules/vore/appearance/spider_taur_powers_vr.dm
@@ -30,7 +30,7 @@ mob/proc/weaveWeb()
spawn(30) //3 seconds to form
new /obj/effect/spider/stickyweb(src.loc)
else
- src << "You do not have enough nutrition to create webbing!"
+ to_chat(src, "You do not have enough nutrition to create webbing!")
*/
/mob/proc/weaveWebBindings()
@@ -43,4 +43,4 @@ mob/proc/weaveWeb()
var/obj/item/clothing/suit/straight_jacket/web_bindings/bindings = new() //This sprite is amazing, I must say.
src.put_in_hands(bindings)
else
- src << "You do not have enough nutrition to create webbing!" //CK~
+ to_chat(src, "You do not have enough nutrition to create webbing!") //CK~
diff --git a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm
index d4fd1f13dc..1f82272c2a 100644
--- a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm
+++ b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm
@@ -157,14 +157,27 @@
clip_mask_icon = 'icons/mob/vore/taurs_vr.dmi'
clip_mask_state = "taur_clip_mask_def" //Used to clip off the lower part of suits & uniforms.
-/datum/sprite_accessory/tail/taur/roiz_long_lizard // Not ACTUALLY a taur, but it uses 32x64 so it wouldn't fit in tails.dmi, and having it as a tail bugs up the sprite.
- name = "Long Lizard Tail (Roiz Lizden)"
- icon_state = "roiz_tail_s"
- do_colouration = 0
- ckeys_allowed = list("spoopylizz")
+// Species-unique long tails/taurhalves
+
+/datum/sprite_accessory/tail/taur/shadekin_tail
+ name = "Shadekin Tail (Shadekin)"
+ icon_state = "shadekin_s"
+ can_ride = 0
hide_body_parts = null
clip_mask_icon = null
clip_mask_state = null
+ apply_restrictions = TRUE
+ species_allowed = list(SPECIES_SHADEKIN)
+
+/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_2c
+ name = "Shadekin Tail dual-color (Shadekin)"
+ extra_overlay = "shadekin_markings"
+
+/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_long
+ name = "Shadekin Long Tail (Shadekin)"
+ icon_state = "shadekin_long_s"
+
+// Tails/taurhalves for everyone
/datum/sprite_accessory/tail/taur/wolf
name = "Wolf (Taur)"
@@ -402,6 +415,49 @@
icon_state = "otie_s"
extra_overlay = "otie_markings"
+/datum/sprite_accessory/tail/taur/alraune/alraune_2c
+ name = "Alraune (dual color)"
+ icon_state = "alraunecolor_s"
+ ani_state = "alraunecolor_closed_s"
+ ckeys_allowed = null
+ do_colouration = 1
+ extra_overlay = "alraunecolor_markings"
+ extra_overlay_w = "alraunecolor_closed_markings"
+ clip_mask_state = "taur_clip_mask_alraune"
+
+/datum/sprite_accessory/tail/taur/wasp
+ name = "Wasp (dual color)"
+ icon_state = "wasp_s"
+ extra_overlay = "wasp_markings"
+ clip_mask_state = "taur_clip_mask_wasp"
+
+ msg_owner_disarm_run = "You quickly push %prey to the ground with your leg!"
+ msg_prey_disarm_run = "%owner pushes you down to the ground with their leg!"
+
+ msg_owner_disarm_walk = "You firmly push your leg down on %prey, painfully but harmlessly pinning them to the ground!"
+ msg_prey_disarm_walk = "%owner firmly pushes their leg down on you, quite painfully but harmlessly pinning you to the ground!"
+
+ msg_owner_harm_walk = "You methodically place your leg down upon %prey's body, slowly applying pressure, crushing them against the floor!"
+ msg_prey_harm_walk = "%owner methodically places their leg upon your body, slowly applying pressure, crushing you against the floor!"
+
+ msg_owner_grab_success = "You pin %prey down on the ground with your front leg before using your other leg to pick them up, trapping them between two of your front legs!"
+ msg_prey_grab_success = "%owner pins you down on the ground with their front leg before using their other leg to pick you up, trapping you between two of their front legs!"
+
+ msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!"
+ msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!"
+
+// Special snowflake tails/taurhalves
+
+//spoopylizz: Roiz Lizden
+/datum/sprite_accessory/tail/taur/roiz_long_lizard // Not ACTUALLY a taur, but it uses 32x64 so it wouldn't fit in tails.dmi, and having it as a tail bugs up the sprite.
+ name = "Long Lizard Tail (Roiz Lizden)"
+ icon_state = "roiz_tail_s"
+ do_colouration = 0
+ ckeys_allowed = list("spoopylizz")
+ hide_body_parts = null
+ clip_mask_icon = null
+ clip_mask_state = null
+
//wickedtemp: Chakat Tempest
/datum/sprite_accessory/tail/taur/feline/tempest
name = "Feline (wickedtemp) (Taur)"
@@ -436,7 +492,7 @@
msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!"
msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!"
-//liquidfirefly: Ariana Scol
+//natje:
/datum/sprite_accessory/tail/taur/alraune
name = "Alraune (natje) (Taur)"
icon_state = "alraune_s"
@@ -466,35 +522,4 @@
msg_prey_grab_success = "%owner slides over you with their vines, smushing you against the ground before wrapping one up around you, trapping you within the tight confines of their vines!"
msg_owner_grab_fail = "You step down onto %prey with one of your vines, forcing them onto the ground!"
- msg_prey_grab_fail = "%owner steps down onto you with one of their vines, squishing you and forcing you onto the ground!"
-
-/datum/sprite_accessory/tail/taur/alraune/alraune_2c
- name = "Alraune (dual color)"
- icon_state = "alraunecolor_s"
- ani_state = "alraunecolor_closed_s"
- ckeys_allowed = null
- do_colouration = 1
- extra_overlay = "alraunecolor_markings"
- extra_overlay_w = "alraunecolor_closed_markings"
- clip_mask_state = "taur_clip_mask_alraune"
-
-/datum/sprite_accessory/tail/taur/wasp
- name = "Wasp (dual color)"
- icon_state = "wasp_s"
- extra_overlay = "wasp_markings"
- clip_mask_state = "taur_clip_mask_wasp"
-
- msg_owner_disarm_run = "You quickly push %prey to the ground with your leg!"
- msg_prey_disarm_run = "%owner pushes you down to the ground with their leg!"
-
- msg_owner_disarm_walk = "You firmly push your leg down on %prey, painfully but harmlessly pinning them to the ground!"
- msg_prey_disarm_walk = "%owner firmly pushes their leg down on you, quite painfully but harmlessly pinning you to the ground!"
-
- msg_owner_harm_walk = "You methodically place your leg down upon %prey's body, slowly applying pressure, crushing them against the floor!"
- msg_prey_harm_walk = "%owner methodically places their leg upon your body, slowly applying pressure, crushing you against the floor!"
-
- msg_owner_grab_success = "You pin %prey down on the ground with your front leg before using your other leg to pick them up, trapping them between two of your front legs!"
- msg_prey_grab_success = "%owner pins you down on the ground with their front leg before using their other leg to pick you up, trapping you between two of their front legs!"
-
- msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!"
- msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!"
+ msg_prey_grab_fail = "%owner steps down onto you with one of their vines, squishing you and forcing you onto the ground!"
\ No newline at end of file
diff --git a/code/modules/vore/appearance/sprite_accessories_vr.dm b/code/modules/vore/appearance/sprite_accessories_vr.dm
index efdb36d628..2a988dd009 100644
--- a/code/modules/vore/appearance/sprite_accessories_vr.dm
+++ b/code/modules/vore/appearance/sprite_accessories_vr.dm
@@ -12,6 +12,7 @@
/datum/sprite_accessory
// Ckey of person allowed to use this, if defined.
var/list/ckeys_allowed = null
+ var/apply_restrictions = FALSE //whether to apply restrictions for specific tails/ears/wings
/*
////////////////////////////
@@ -29,6 +30,17 @@
var/extra_overlay // Icon state of an additional overlay to blend in.
var/desc = "You should not see this..."
+// Species-unique ears
+
+/datum/sprite_accessory/ears/shadekin
+ name = "Shadekin Ears, colorable"
+ desc = ""
+ icon_state = "shadekin"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ apply_restrictions = TRUE
+ species_allowed = list(SPECIES_SHADEKIN)
+
// Ears avaliable to anyone
/datum/sprite_accessory/ears/squirrel_orange
@@ -386,6 +398,14 @@
color_blend_mode = ICON_MULTIPLY
extra_overlay = "tesharilowinner"
+/datum/sprite_accessory/ears/inkling
+ name = "colorable mature inkling hair"
+ desc = ""
+ icon = 'icons/mob/human_face_vr.dmi'
+ icon_state = "inkling-colorable"
+ color_blend_mode = ICON_MULTIPLY
+ do_colouration = 1
+
// Special snowflake ears go below here.
@@ -657,6 +677,19 @@
var/icon/clip_mask_icon = null //Icon file used for clip mask.
var/clip_mask_state = null //Icon state to generate clip mask. Clip mask is used to 'clip' off the lower part of clothing such as jumpsuits & full suits.
+// Species-unique tails
+
+/datum/sprite_accessory/tail/shadekin_short
+ name = "Shadekin Short Tail, colorable"
+ desc = ""
+ icon_state = "shadekin-short"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ apply_restrictions = TRUE
+ species_allowed = list(SPECIES_SHADEKIN)
+
+// Everyone tails
+
/datum/sprite_accessory/tail/invisible
name = "hide species-sprite tail"
icon = null
diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm
index 39f480fda5..e7d58903cd 100644
--- a/code/modules/vore/eating/bellymodes_vr.dm
+++ b/code/modules/vore/eating/bellymodes_vr.dm
@@ -186,6 +186,8 @@
digestion_death(M)
if(!ishuman(owner))
owner.update_icons()
+ if(compensation == 0) //Slightly sloppy way at making sure certain mobs don't give ZERO nutrition (fish and so on)
+ compensation = 21 //This reads as 20*4.5 due to the calculations afterward, making the backup nutrition value 94.5 per mob. Not op compared to regular prey.
if(compensation > 0)
if(isrobot(owner))
var/mob/living/silicon/robot/R = owner
diff --git a/code/modules/vore/eating/silicon_vr.dm b/code/modules/vore/eating/silicon_vr.dm
index ef8b089777..65400c7707 100644
--- a/code/modules/vore/eating/silicon_vr.dm
+++ b/code/modules/vore/eating/silicon_vr.dm
@@ -78,7 +78,7 @@
return
hologram.visible_message("[hologram] starts engulfing [prey] in hardlight holograms!")
- src << "
You begin engulfing [prey] in hardlight holograms." //Can't be part of the above, because the above is from the hologram.
+ to_chat(src, "
You begin engulfing [prey] in hardlight holograms.") //Can't be part of the above, because the above is from the hologram.
if(do_after(user=eyeobj,delay=50,target=prey,needhand=0) && holo && hologram && !hologram.bellied) //Didn't move and still projecting and effect exists and no other bellied people
hologram.get_prey(prey)
diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
index 07e018f7a6..489cab17f5 100644
--- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
@@ -60,9 +60,7 @@
desc = "A kit containing Tasald's equipment."
has_items = list(
/obj/item/clothing/suit/storage/det_suit/fluff/tasald,
- /obj/item/clothing/suit/storage/det_suit/fluff/tas_coat,
- /obj/item/clothing/under/det/fluff/tasald,
- /obj/item/weapon/implanter/loyalty)
+ /obj/item/clothing/under/det/fluff/tasald)
//bwoincognito:Octavious Ward
/obj/item/weapon/storage/box/fluff/octavious
diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
index 35b205f982..713baa1c99 100644
--- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
@@ -502,22 +502,6 @@
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 10, bio = 0, rad = 0)
-// bwoincognito:Tasald Corlethian
-/obj/item/clothing/suit/storage/det_suit/fluff/tas_coat
- name = "Armored Colony coat"
- desc = "Dark green and grey colored sleeveless long coat with two thick metal shoulder pads. has seen some wear and tear, with noticeable patches in the fabric, scratches on the shoulder pads, but with a clean patch on the left upper chest. It has a red NT marked on the right shoulder pad and red Security on the left. "
- allowed = list(/obj/item/weapon/gun,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/handcuffs,/obj/item/device/flashlight/maglight,/obj/item/clothing/head/helmet)
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "tasaldcoat"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "tasaldcoat_mob"
-
- blood_overlay_type = "coat"
- body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
- armor = list(melee = 60, bullet = 60, laser = 60, energy = 40, bomb = 40, bio = 0, rad = 0)
-
//Event Costumes Below
/obj/item/clothing/head/helmet/fluff/freddy
name = "Animatronic Suit Helmet"
@@ -1917,3 +1901,19 @@ Departamental Swimsuits, for general use
/obj/item/clothing/under/fluff/slime_skeleton/digest_act(var/atom/movable/item_storage = null)
return FALSE //Indigestible
+
+//Bacon12366:Elly Brown
+/obj/item/clothing/accessory/sweater/fluff/star
+ name = "Star Sweater"
+ desc = "It's a white long sweater with a big yellow star at the chest. It seems like it's made of a soft material."
+
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_state = "star_sweater"
+
+ icon_override = 'icons/vore/custom_clothes_vr.dmi'
+ item_state = "star_sweater"
+
+ slot_flags = SLOT_OCLOTHING | SLOT_TIE
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
+ w_class = ITEMSIZE_NORMAL
+ slot = ACCESSORY_SLOT_OVER
\ No newline at end of file
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index ea12ad403d..bb7e0a9e0d 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -249,7 +249,7 @@
name = "Mouse Plushie"
desc = "A plushie of a delightful mouse! What was once considered a vile rodent is now your very best friend."
slot_flags = SLOT_HEAD
- icon_state = "mouse_brown"
+ icon_state = "mouse_brown" //TFF 12/11/19 - Change sprite to not look dead. Heck you for that choice! >:C
item_state = "mouse_brown_head"
icon = 'icons/vore/custom_items_vr.dmi'
icon_override = 'icons/vore/custom_items_vr.dmi'
diff --git a/icons/mob/human_face_or_vr.dmi b/icons/mob/human_face_or_vr.dmi
index 3642b50afb..920f63cf09 100644
Binary files a/icons/mob/human_face_or_vr.dmi and b/icons/mob/human_face_or_vr.dmi differ
diff --git a/icons/mob/human_face_vr.dmi b/icons/mob/human_face_vr.dmi
index dbca0876a0..fa90d462e3 100644
Binary files a/icons/mob/human_face_vr.dmi and b/icons/mob/human_face_vr.dmi differ
diff --git a/icons/mob/human_face_vr_add.dmi b/icons/mob/human_face_vr_add.dmi
index bcca31d011..78d1b60e4c 100644
Binary files a/icons/mob/human_face_vr_add.dmi and b/icons/mob/human_face_vr_add.dmi differ
diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi
index d776a68b67..87c59161e6 100644
Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ
diff --git a/icons/mob/human_races/r_shadekin_vr.dmi b/icons/mob/human_races/r_shadekin_vr.dmi
new file mode 100644
index 0000000000..bc29b48cec
Binary files /dev/null and b/icons/mob/human_races/r_shadekin_vr.dmi differ
diff --git a/icons/mob/shadekin_hud.dmi b/icons/mob/shadekin_hud.dmi
index cf7259cb5c..707feea2a9 100644
Binary files a/icons/mob/shadekin_hud.dmi and b/icons/mob/shadekin_hud.dmi differ
diff --git a/icons/mob/species/shadekin/tail.dmi b/icons/mob/species/shadekin/tail.dmi
new file mode 100644
index 0000000000..51ac9d79ca
Binary files /dev/null and b/icons/mob/species/shadekin/tail.dmi differ
diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi
index 9121d94d4d..22d5c1ebba 100644
Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ
diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi
index 8de015c01c..b1b995cd52 100644
Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ
diff --git a/icons/mob/vore/taurs_vr.dmi b/icons/mob/vore/taurs_vr.dmi
index 88fceac238..2edbe8561b 100644
Binary files a/icons/mob/vore/taurs_vr.dmi and b/icons/mob/vore/taurs_vr.dmi differ
diff --git a/icons/obj/custom_books.dmi b/icons/obj/custom_books.dmi
new file mode 100644
index 0000000000..2be098e848
Binary files /dev/null and b/icons/obj/custom_books.dmi differ
diff --git a/icons/obj/vending_vr.dmi b/icons/obj/vending_vr.dmi
index 73384929c1..45e8edb78d 100644
Binary files a/icons/obj/vending_vr.dmi and b/icons/obj/vending_vr.dmi differ
diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi
index 2a487aab35..df35d950f5 100644
Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ
diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi
index ce38b5318d..daf6b0895a 100644
Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ
diff --git a/maps/RandomZLevels/carpfarm.dmm b/maps/RandomZLevels/carpfarm.dmm
index 38817753cc..6156c8b62a 100644
--- a/maps/RandomZLevels/carpfarm.dmm
+++ b/maps/RandomZLevels/carpfarm.dmm
@@ -1,66313 +1,261 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/space,
-/area/space)
-"ab" = (
-/obj/effect/blocker,
-/turf/space{
- density = 1;
- desc = "You can't go there!";
- name = "The 4th Wall"
- },
-/area/space)
-"ac" = (
-/turf/simulated/mineral,
-/area/space)
-"ad" = (
-/obj/effect/gibspawner/human,
-/turf/space,
-/area/space)
-"ae" = (
-/mob/living/simple_mob/animal/space/carp,
-/turf/space,
-/area/space)
-"af" = (
-/mob/living/simple_mob/animal/space/carp/large,
-/turf/space,
-/area/space)
-"ag" = (
-/obj/effect/decal/mecha_wreckage/hoverpod,
-/obj/effect/gibspawner/human,
-/turf/space,
-/area/space)
-"ah" = (
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/space)
-"ai" = (
-/obj/effect/landmark{
- name = "awaystart"
- },
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/space)
-"aj" = (
-/obj/item/weapon/pickaxe/jackhammer,
-/turf/simulated/mineral/floor/ignore_mapgen,
-/area/space)
-"ak" = (
-/turf/simulated/mineral,
-/area/mine/unexplored)
-"al" = (
-/obj/structure/lattice,
-/turf/space,
-/area/space)
-"am" = (
-/turf/simulated/wall/iron,
-/area/awaymission/carpfarm/base)
-"an" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/power/smes/buildable,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"ao" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"ap" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aq" = (
-/obj/machinery/gateway{
- dir = 9
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"ar" = (
-/obj/machinery/gateway{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"as" = (
-/obj/machinery/gateway{
- dir = 5
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"at" = (
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 5
- },
-/obj/machinery/door/window,
-/turf/simulated/floor/tiled/freezer,
-/area/awaymission/carpfarm/base)
-"au" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/carpfarm/base)
-"av" = (
-/obj/machinery/door/airlock/silver,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/carpfarm/base)
-"aw" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small/built{
- icon_state = "bulb1";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/carpfarm/base)
-"ax" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/lino,
-/area/awaymission/carpfarm/base)
-"ay" = (
-/obj/structure/bedsheetbin,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/lino,
-/area/awaymission/carpfarm/base)
-"az" = (
-/obj/item/weapon/storage/toolbox/electrical,
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/item/weapon/paper/awaygate/carpfarm/suicide,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aA" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aB" = (
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aC" = (
-/obj/machinery/gateway{
- dir = 8
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"aD" = (
-/obj/machinery/gateway/centeraway{
- calibrated = 0
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"aE" = (
-/obj/machinery/gateway{
- dir = 4
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"aF" = (
-/obj/structure/window/basic{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/carpfarm/base)
-"aG" = (
-/turf/simulated/floor/tiled/white,
-/area/awaymission/carpfarm/base)
-"aH" = (
-/obj/item/weapon/bedsheet,
-/obj/structure/bed/padded,
-/turf/simulated/floor/lino,
-/area/awaymission/carpfarm/base)
-"aI" = (
-/turf/simulated/floor/lino,
-/area/awaymission/carpfarm/base)
-"aJ" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/void/mining,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/mining,
-/obj/item/weapon/mining_scanner,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aK" = (
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aL" = (
-/obj/structure/closet/toolcloset,
-/obj/item/weapon/pickaxe/jackhammer,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aM" = (
-/obj/machinery/gateway{
- density = 0;
- dir = 10
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"aN" = (
-/obj/machinery/gateway,
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"aO" = (
-/obj/machinery/gateway{
- density = 0;
- dir = 6
- },
-/turf/simulated/floor/bluegrid,
-/area/awaymission/carpfarm/base)
-"aP" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- dir = 4;
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/carpfarm/base)
-"aQ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"aR" = (
-/obj/structure/table/woodentable,
-/obj/random/action_figure,
-/turf/simulated/floor/lino,
-/area/awaymission/carpfarm/base)
-"aS" = (
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"aT" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/landmark/loot_spawn,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"aU" = (
-/obj/structure/closet/jcloset,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"aV" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/random/medical,
-/obj/random/medical,
-/obj/random/medical,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"aW" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aX" = (
-/obj/machinery/door/airlock/hatch,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aY" = (
-/obj/machinery/door/airlock/silver,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"aZ" = (
-/obj/machinery/door/airlock,
-/turf/simulated/floor/lino,
-/area/awaymission/carpfarm/base)
-"ba" = (
-/obj/effect/wingrille_spawn/reinforced,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"bb" = (
-/obj/structure/table/reinforced,
-/obj/random/tech_supply,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bc" = (
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bd" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"be" = (
-/obj/structure/closet/gimmick/russian,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bf" = (
-/obj/structure/closet/gimmick/russian,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bg" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/freezer,
-/obj/item/trash/syndi_cakes,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bh" = (
-/obj/structure/closet/wardrobe/black,
-/obj/item/clothing/under/syndicate/tacticool,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bi" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/landmark/costume,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bj" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bk" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/closet/crate/internals,
-/obj/item/weapon/tank/emergency/oxygen/engi,
-/obj/item/weapon/tank/emergency/oxygen/engi,
-/obj/item/weapon/tank/emergency/oxygen/engi,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bl" = (
-/obj/structure/closet/crate/internals,
-/obj/item/weapon/tank/emergency/oxygen/engi,
-/obj/item/weapon/tank/emergency/oxygen/engi,
-/obj/item/weapon/tank/emergency/oxygen/engi,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bm" = (
-/obj/structure/closet/crate/plastic,
-/obj/random/contraband,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bn" = (
-/obj/structure/closet/crate,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/random/weapon,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bo" = (
-/obj/machinery/door/airlock/mining,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bp" = (
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bq" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"br" = (
-/obj/item/mecha_parts/mecha_equipment/tool/drill,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bs" = (
-/obj/structure/ore_box,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bt" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/rack,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bu" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bv" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bw" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bx" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"by" = (
-/obj/machinery/vending/coffee{
- prices = list()
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bz" = (
-/obj/machinery/vending/sovietsoda,
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bA" = (
-/obj/machinery/vending/snack{
- prices = list()
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bB" = (
-/obj/machinery/vending/cigarette{
- prices = list()
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bC" = (
-/obj/machinery/vending/dinnerware,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bD" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/weapon/gun/projectile/shotgun/pump/rifle/mosin,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bE" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/ammo_magazine/clip/c762,
-/obj/item/ammo_magazine/clip/c762,
-/obj/item/ammo_magazine/clip/c762,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bF" = (
-/obj/structure/dispenser/oxygen,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1;
- icon_state = "map";
-
- },
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- icon_state = "intact";
-
- },
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1375;
- master_tag = "carp_airlock";
- name = "interior access button";
- pixel_x = 26;
- pixel_y = -26;
- req_one_access = newlist()
- },
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bK" = (
-/obj/machinery/suit_cycler/mining,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bL" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bM" = (
-/obj/mecha/working/hoverpod/combatpod,
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bN" = (
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bO" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/carpfarm/base)
-"bP" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/wall/iron,
-/area/awaymission/carpfarm/base)
-"bQ" = (
-/obj/machinery/door/airlock/external{
- frequency = 1375;
- icon_state = "door_locked";
- id_tag = "carp_inner";
- locked = 1;
- name = "External Access";
- req_access = newlist()
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"bR" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bS" = (
-/obj/item/weapon/reagent_containers/food/snacks/cubancarp,
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bT" = (
-/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bU" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bV" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1375;
- id_tag = "carp_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1375;
- id_tag = "carp_airlock";
- pixel_x = -28;
- pixel_y = 0;
- req_access = null;
- tag_airpump = "carp_pump";
- tag_chamber_sensor = "carp_sensor";
- tag_exterior_door = "carp_outer";
- tag_interior_door = "carp_inner"
- },
-/obj/effect/floor_decal/industrial/warning/cee{
- icon_state = "warningcee";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"bW" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1375;
- id_tag = "carp_pump"
- },
-/obj/effect/floor_decal/industrial/warning/cee{
- icon_state = "warningcee";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"bX" = (
-/obj/structure/closet/emcloset,
-/obj/item/weapon/storage/toolbox/emergency,
-/obj/machinery/airlock_sensor{
- frequency = 1375;
- id_tag = "carp_sensor";
- pixel_x = 28
- },
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"bY" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"bZ" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"ca" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/closet/crate/bin,
-/obj/item/trash/candy/proteinbar,
-/turf/simulated/floor/tiled,
-/area/awaymission/carpfarm/base)
-"cb" = (
-/obj/machinery/door/airlock/external{
- frequency = 1375;
- icon_state = "door_locked";
- id_tag = "carp_outer";
- locked = 1;
- name = "External Access";
- req_access = newlist()
- },
-/turf/simulated/floor/plating,
-/area/awaymission/carpfarm/base)
-"cc" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/airless,
-/area/awaymission/carpfarm/base)
-"cd" = (
-/turf/simulated/floor/airless,
-/area/awaymission/carpfarm/base)
-"ce" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1375;
- master_tag = "carp_airlock";
- name = "exterior access button";
- pixel_x = 26;
- pixel_y = 26;
- req_access = newlist()
- },
-/turf/simulated/floor/airless,
-/area/awaymission/carpfarm/base)
-"cf" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/space,
-/area/space)
-"cg" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/airless,
-/area/space)
-"ch" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/airless,
-/area/space)
-"ci" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/airless,
-/area/space)
-"cj" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/airless,
-/area/space)
-"ck" = (
-/turf/simulated/floor/airless,
-/area/space)
-"cl" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 4
- },
-/turf/simulated/floor/airless,
-/area/space)
-"cm" = (
-/obj/effect/gibspawner/human,
-/turf/simulated/floor/airless,
-/area/space)
-"cn" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/airless,
-/area/space)
-"co" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/airless,
-/area/space)
-"cp" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/airless,
-/area/space)
+"aa" = (/turf/space,/area/space)
+"ab" = (/obj/effect/blocker,/turf/space{density = 1; desc = "You can't go there!"; name = "The 4th Wall"},/area/space)
+"ac" = (/turf/simulated/mineral,/area/space)
+"ad" = (/obj/effect/blocker,/turf/space,/area/space)
+"ae" = (/mob/living/simple_mob/animal/space/carp,/turf/space,/area/space)
+"ah" = (/turf/simulated/mineral/floor/ignore_mapgen,/area/space)
+"ai" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/mineral/floor/ignore_mapgen,/area/space)
+"aj" = (/obj/item/weapon/pickaxe/jackhammer,/turf/simulated/mineral/floor/ignore_mapgen,/area/space)
+"ak" = (/turf/simulated/mineral,/area/mine/unexplored)
+"al" = (/obj/structure/lattice,/turf/space,/area/space)
+"am" = (/turf/simulated/wall/iron,/area/awaymission/carpfarm/base)
+"an" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"ao" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"ap" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/port_gen/pacman,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aq" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"ar" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"as" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"at" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5},/obj/machinery/door/window,/turf/simulated/floor/tiled/freezer,/area/awaymission/carpfarm/base)
+"au" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base)
+"av" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base)
+"aw" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base)
+"ax" = (/obj/structure/table/woodentable,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base)
+"ay" = (/obj/structure/bedsheetbin,/obj/machinery/light{dir = 1},/turf/simulated/floor/lino,/area/awaymission/carpfarm/base)
+"az" = (/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/paper/awaygate/carpfarm/suicide,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aA" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aB" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aC" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"aD" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"aE" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"aF" = (/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base)
+"aG" = (/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base)
+"aH" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base)
+"aI" = (/turf/simulated/floor/lino,/area/awaymission/carpfarm/base)
+"aJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aK" = (/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aL" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe/jackhammer,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aM" = (/obj/machinery/gateway{density = 0; dir = 10},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"aN" = (/obj/machinery/gateway,/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"aO" = (/obj/machinery/gateway{density = 0; dir = 6},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base)
+"aP" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{dir = 4; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base)
+"aQ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"aR" = (/obj/structure/table/woodentable,/obj/random/action_figure,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base)
+"aS" = (/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"aT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"aU" = (/obj/structure/closet/jcloset,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"aV" = (/obj/structure/closet/secure_closet/medical1,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"aW" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aX" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aY" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"aZ" = (/obj/machinery/door/airlock,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base)
+"ba" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"bb" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bc" = (/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"be" = (/obj/structure/closet/gimmick/russian,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bf" = (/obj/structure/closet/gimmick/russian,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/item/trash/syndi_cakes,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bh" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/under/syndicate/tacticool,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bi" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/costume,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bj" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bk" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bl" = (/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bm" = (/obj/structure/closet/crate/plastic,/obj/random/contraband,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bn" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/weapon,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bo" = (/obj/machinery/door/airlock/mining,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bp" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bq" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"br" = (/obj/item/mecha_parts/mecha_equipment/tool/drill,/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bs" = (/obj/structure/ore_box,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bt" = (/obj/machinery/light{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bu" = (/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bw" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -2; pixel_y = 6},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bx" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"by" = (/obj/machinery/vending/coffee{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bz" = (/obj/machinery/vending/sovietsoda,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bA" = (/obj/machinery/vending/snack{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bB" = (/obj/machinery/vending/cigarette{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bC" = (/obj/machinery/vending/dinnerware,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bD" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bE" = (/obj/structure/closet/crate/secure/weapon,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bF" = (/obj/structure/dispenser/oxygen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bI" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bJ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1375; master_tag = "carp_airlock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = newlist()},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bK" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bL" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bM" = (/obj/mecha/working/hoverpod/combatpod,/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bN" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bO" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base)
+"bP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/iron,/area/awaymission/carpfarm/base)
+"bQ" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_inner"; locked = 1; name = "External Access"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"bR" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bS" = (/obj/item/weapon/reagent_containers/food/snacks/cubancarp,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bT" = (/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bU" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1375; id_tag = "carp_airlock"; pixel_x = -28; pixel_y = 0; req_access = null; tag_airpump = "carp_pump"; tag_chamber_sensor = "carp_sensor"; tag_exterior_door = "carp_outer"; tag_interior_door = "carp_inner"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 8},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"bW" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"bX" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/airlock_sensor{frequency = 1375; id_tag = "carp_sensor"; pixel_x = 28},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"bY" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"bZ" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"ca" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/candy/proteinbar,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base)
+"cb" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_outer"; locked = 1; name = "External Access"; req_access = newlist()},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base)
+"cc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base)
+"cd" = (/turf/simulated/floor/airless,/area/awaymission/carpfarm/base)
+"ce" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1375; master_tag = "carp_airlock"; name = "exterior access button"; pixel_x = 26; pixel_y = 26; req_access = newlist()},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base)
+"cf" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
+"cg" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/airless,/area/space)
+"ch" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/airless,/area/space)
+"ci" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/airless,/area/space)
+"cj" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/space)
+"ck" = (/turf/simulated/floor/airless,/area/space)
+"cl" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/airless,/area/space)
+"cm" = (/obj/effect/gibspawner/human,/turf/simulated/floor/airless,/area/space)
+"cn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/airless,/area/space)
+"co" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space)
+"cp" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/airless,/area/space)
(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(21,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(22,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(23,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(24,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(25,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(26,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(27,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(28,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(31,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(32,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(33,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-aj
-ai
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(34,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ai
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(36,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ai
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(37,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(38,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(39,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(40,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(41,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(42,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(43,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(44,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(45,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(46,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(47,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(48,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(49,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(50,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(51,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(52,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(53,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(54,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(55,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(56,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(57,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(58,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(59,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(60,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(61,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(62,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(63,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(64,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(65,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(66,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(67,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(68,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(69,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ai
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(70,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(71,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(72,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-aj
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(73,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ai
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(74,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(75,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(76,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ai
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(77,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(78,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(79,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(80,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-af
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(81,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(82,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(83,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(84,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(85,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(86,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(87,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(88,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ag
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(89,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(90,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(91,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(92,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(93,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(94,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(95,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(96,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(97,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(98,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(99,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(100,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(101,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(102,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(103,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(104,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(105,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(106,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(107,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(108,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(109,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(110,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(111,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(112,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(113,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(114,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(115,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(116,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(117,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(118,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(119,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(120,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(121,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-ak
-ak
-ak
-am
-am
-am
-am
-am
-am
-am
-ba
-ba
-ba
-am
-am
-am
-am
-am
-am
-al
-al
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(122,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-an
-az
-aJ
-aJ
-aJ
-am
-bb
-bb
-bb
-am
-bq
-bc
-bc
-bM
-am
-al
-aa
-aa
-al
-al
-aa
-al
-al
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(123,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-ao
-aA
-aK
-aK
-aK
-aW
-bc
-bc
-bc
-am
-br
-bc
-bc
-bN
-am
-al
-aa
-aa
-al
-al
-al
-al
-al
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(124,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-ap
-aB
-aL
-aL
-aL
-am
-bc
-bc
-bc
-am
-bs
-bc
-bG
-bO
-am
-al
-aa
-aa
-al
-al
-aa
-al
-al
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(125,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-am
-am
-am
-am
-am
-am
-bd
-bc
-bc
-am
-bt
-bc
-bH
-bP
-am
-am
-cc
-cg
-cj
-cj
-cj
-cj
-cj
-cn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(126,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aq
-aC
-aM
-aQ
-aS
-am
-bc
-bc
-bc
-am
-bu
-bc
-bI
-bQ
-bV
-cb
-cd
-ch
-ck
-ck
-ck
-ck
-cm
-co
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(127,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-ar
-aD
-aN
-aQ
-aS
-aX
-bc
-bc
-bc
-bo
-bc
-bc
-bJ
-bQ
-bW
-cb
-ce
-ch
-ck
-ck
-ck
-ck
-ck
-co
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(128,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-as
-aE
-aO
-aQ
-aS
-am
-bc
-bc
-bc
-am
-bv
-bF
-bK
-am
-bX
-am
-cd
-ci
-cl
-cl
-cl
-cl
-cl
-cp
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(129,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-am
-am
-am
-am
-am
-am
-bd
-bc
-bc
-am
-am
-am
-am
-am
-am
-am
-ak
-aa
-al
-al
-aa
-al
-al
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(130,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-at
-aF
-aP
-aP
-aP
-am
-bc
-bc
-bc
-am
-bw
-bx
-bx
-bx
-bY
-am
-ak
-ak
-al
-al
-al
-al
-al
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(131,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-au
-aG
-aG
-aG
-aG
-aY
-bc
-bc
-bc
-bp
-bx
-bx
-bx
-bx
-bx
-am
-ak
-ak
-ak
-al
-aa
-al
-al
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(132,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-av
-am
-av
-am
-av
-am
-bc
-bc
-bc
-am
-by
-bx
-bx
-bR
-bx
-am
-ak
-ak
-ak
-ak
-ak
-ak
-al
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(133,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aw
-am
-aw
-am
-aw
-am
-bc
-bc
-bc
-am
-bz
-bx
-bL
-bS
-bZ
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(134,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-am
-am
-am
-am
-am
-am
-bd
-bc
-bc
-am
-bA
-bx
-bL
-bT
-bZ
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(135,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-ax
-aH
-aI
-aR
-aH
-am
-bc
-bc
-bc
-am
-bB
-bx
-bx
-bU
-bx
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(136,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-ay
-aI
-aI
-aI
-aI
-aZ
-bc
-bc
-bc
-bp
-bx
-bx
-bx
-bx
-bx
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(137,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-ax
-aH
-aI
-ax
-aH
-am
-bc
-bc
-bc
-am
-bC
-bx
-bx
-bx
-ca
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(138,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-am
-am
-am
-am
-am
-am
-am
-bj
-am
-am
-am
-am
-am
-am
-am
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(139,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aT
-aS
-be
-aS
-bk
-aS
-bD
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-aj
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(140,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aT
-aS
-bf
-aS
-bl
-aS
-bE
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ai
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(141,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aS
-aS
-aS
-aS
-aS
-aS
-aS
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(142,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aS
-aS
-aS
-aS
-aS
-aS
-aS
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ai
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(143,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aU
-aS
-bg
-aS
-bm
-aS
-aT
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ai
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(144,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aV
-aS
-bh
-aS
-aT
-aS
-aT
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(145,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-aV
-aS
-bi
-aS
-bn
-aS
-aT
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(146,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-am
-am
-am
-am
-am
-am
-am
-am
-am
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(147,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(148,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(149,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(150,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(151,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(152,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(153,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(154,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(155,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(156,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(157,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(158,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(159,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(160,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(161,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(162,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(163,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(164,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(165,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(166,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(167,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(168,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-ak
-ak
-ak
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(169,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-ak
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ak
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(170,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(171,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(172,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(173,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(174,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(175,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(176,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(177,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(178,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(179,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(180,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(181,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(182,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(183,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(184,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(185,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(186,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(187,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(188,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ah
-ah
-ai
-ah
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(189,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(190,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(191,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(192,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ah
-ah
-aj
-ah
-ai
-ah
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(193,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(194,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ai
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(195,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ai
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(196,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-aj
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ah
-ah
-ai
-ah
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(197,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ai
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ah
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(198,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ah
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ah
-ah
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(199,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(200,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(201,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(202,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(203,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(204,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(205,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(206,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(207,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(208,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(209,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(210,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(211,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(212,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(213,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(214,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(215,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(216,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(217,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(218,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(219,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(220,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(221,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(222,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(223,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(224,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(225,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(226,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(227,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(228,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(229,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(230,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(231,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(232,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(233,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(234,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(235,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(236,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(237,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(238,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(239,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(240,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(241,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(242,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(243,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(244,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(245,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(246,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(247,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(248,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(249,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(250,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(251,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(252,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(253,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(254,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(255,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaeaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaeaaaaacacacacacacacacacacacacacahahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahahahahahacacahahacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahaiahahahajahahahaiahahacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahaiahahacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahaiahahahacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahajahahaiahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahacacacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahaiahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahahahahacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacaaaaaaaaacacaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamamamamamamamamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamanaoapamaqarasamatauavawamaxayaxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamazaAaBamaCaDaEamaFaGamamamaHaIaHamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaMaNaOamaPaGavawamaIaIaIamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaQaQaQamaPaGamamamaRaIaxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaSaSaSamaPaGavawamaHaIaHamaTaTaSaSaUaVaVamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamaWamamamaXamamamaYamamamamaZamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbdbcbcbcbdbcbcbcbcbdbcbcbcambebfaSaSbgbhbiamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbjaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcambkblaSaSbmaTbnamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamamamboamamambpamamamambpamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambqbrbsbtbubcbvambwbxbybzbAbBbxbCambDbEaSaSaTaTaTamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbcbcbcbcbFambxbxbxbxbxbxbxbxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbGbHbIbJbKambxbxbxbLbLbxbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambMbNbObPbQbQamambxbxbRbSbTbUbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamambVbWbXambYbxbxbZbZbxbxcaamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalalalalalamcbcbamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalaaaaaacccdcecdakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaaaaacgchchciaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaalaacjckckclaaalaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjcmckclalalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaacfaaaaaacncococpaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaacfaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaacacaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacacacaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaacacacacacacacacacacacacacacacacacacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahaiahahahaiahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahahahahahahahahaiahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacahahahahahajahahahahahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
diff --git a/maps/RandomZLevels/listeningpost.dmm b/maps/RandomZLevels/listeningpost.dmm
index 91d2a6bccc..aac334a339 100644
--- a/maps/RandomZLevels/listeningpost.dmm
+++ b/maps/RandomZLevels/listeningpost.dmm
@@ -1,10539 +1,191 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/space,
-/area)
-"b" = (
-/turf/simulated/mineral,
-/area/mine/unexplored)
-"c" = (
-/turf/simulated/wall/r_wall,
-/area/awaymission/listeningpost)
-"d" = (
-/turf/simulated/floor/plating,
-/area/awaymission/listeningpost)
-"e" = (
-/obj/machinery/power/smes/magical{
- desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
- name = "power storage unit"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/listeningpost)
-"f" = (
-/obj/machinery/door/airlock,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"g" = (
-/turf/simulated/wall,
-/area/awaymission/listeningpost)
-"h" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper/monitorkey,
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_x = 32;
- subspace_transmission = 1;
- syndie = 1
- },
-/obj/item/clothing/glasses/regular,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"i" = (
-/obj/structure/table/standard,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"j" = (
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"k" = (
-/obj/machinery/door/airlock/external,
-/turf/simulated/floor/plating,
-/area/awaymission/listeningpost)
-"l" = (
-/turf/simulated/floor/plating/airless/asteroid,
-/area/mine/explored)
-"m" = (
-/obj/machinery/computer/message_monitor,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"n" = (
-/obj/structure/stool/bed/chair{
- dir = 4
- },
-/mob/living/simple_mob/hostile/syndicate{
- desc = "A weary looking syndicate operative.";
- faction = "syndicate"
- },
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"o" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "november report"
- },
-/obj/item/weapon/pen,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"p" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_x = 32;
- subspace_transmission = 1;
- syndie = 1
- },
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"q" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/head/helmet/space/syndicate,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"r" = (
-/obj/machinery/door/airlock,
-/obj/item/weapon/paper{
- info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451";
- name = "odd report"
- },
-/obj/item/weapon/gun/projectile/pistol,
-/obj/item/weapon/silencer,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"s" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/mineral,
-/area/mine/unexplored)
-"t" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/mineral,
-/area/mine/unexplored)
-"u" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/plating/airless,
-/area)
-"v" = (
-/obj/structure/stool/bed,
-/obj/item/weapon/bedsheet/brown,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"w" = (
-/obj/structure/table/standard,
-/obj/item/device/flashlight/lamp,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"x" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"y" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/mineral,
-/area/mine/unexplored)
-"z" = (
-/obj/machinery/vending/cola,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"A" = (
-/obj/structure/closet,
-/obj/item/clothing/gloves/boxing,
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"B" = (
-/obj/structure/filingcabinet,
-/obj/item/weapon/paper{
- info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it.";
- name = "april report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment.";
- name = "may report"
- },
-/obj/item/weapon/paper{
- info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it.";
- name = "june report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "july report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "august report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "september report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "october report"
- },
-/obj/item/weapon/paper{
- info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160";
- name = "receipt"
- },
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"C" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper{
- info = "
Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us.";
- name = "mission briefing"
- },
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"D" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"E" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/awaymission/listeningpost)
-"F" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/mineral,
-/area/mine/unexplored)
-"G" = (
-/obj/machinery/door/airlock{
- name = "Toilet"
- },
-/turf/simulated/floor,
-/area/awaymission/listeningpost)
-"H" = (
-/turf/simulated/floor{
- icon_state = "freezerfloor"
- },
-/area/awaymission/listeningpost)
-"I" = (
-/obj/machinery/shower{
- icon_state = "shower";
- dir = 8
- },
-/turf/simulated/floor{
- icon_state = "freezerfloor"
- },
-/area/awaymission/listeningpost)
-"J" = (
-/obj/structure/toilet{
- icon_state = "toilet00";
- dir = 8
- },
-/turf/simulated/floor{
- icon_state = "freezerfloor"
- },
-/area/awaymission/listeningpost)
-"K" = (
-/turf/simulated/mineral/clown,
-/area/mine/unexplored)
-"L" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
-/area/mine/explored)
-"M" = (
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"N" = (
-/obj/machinery/gateway{
- icon_state = "off";
- dir = 9
- },
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"O" = (
-/obj/machinery/gateway{
- icon_state = "off";
- dir = 1
- },
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"P" = (
-/obj/machinery/gateway{
- icon_state = "off";
- dir = 5
- },
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"Q" = (
-/obj/machinery/gateway{
- icon_state = "off";
- dir = 8
- },
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"R" = (
-/obj/machinery/gateway/centeraway,
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"S" = (
-/obj/machinery/gateway{
- icon_state = "off";
- dir = 4
- },
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"T" = (
-/obj/machinery/gateway{
- icon_state = "off";
- dir = 10
- },
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"U" = (
-/obj/machinery/gateway,
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
-"V" = (
-/obj/machinery/gateway{
- icon_state = "off";
- dir = 6
- },
-/turf/simulated/floor/airless{
- icon_state = "gcircuit"
- },
-/area/mine/explored)
+"a" = (/turf/space,/area)
+"b" = (/obj/effect/blocker,/turf/space,/area)
+"c" = (/turf/simulated/wall/r_wall,/area/awaymission/listeningpost)
+"d" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/turf/simulated/floor,/area/awaymission/listeningpost)
+"e" = (/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/awaymission/listeningpost)
+"f" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/awaymission/listeningpost)
+"g" = (/turf/simulated/wall,/area/awaymission/listeningpost)
+"h" = (/turf/simulated/mineral,/area/mine/unexplored)
+"i" = (/turf/simulated/floor,/area/awaymission/listeningpost)
+"j" = (/obj/structure/table/standard,/obj/item/weapon/paper/monitorkey,/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; !INVALID_VAR! = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = 32; subspace_transmission = 1; syndie = 1},/obj/item/clothing/glasses/regular,/turf/simulated/floor,/area/awaymission/listeningpost)
+"k" = (/obj/structure/table/standard,/turf/simulated/floor,/area/awaymission/listeningpost)
+"l" = (/turf/simulated/mineral/floor/vacuum,/area/mine/explored)
+"m" = (/obj/machinery/computer/message_monitor{dir = 4},/turf/simulated/floor,/area/awaymission/listeningpost)
+"n" = (/obj/structure/bed/chair{dir = 4},/mob/living/simple_mob/humanoid/merc{desc = "A weary looking syndicate operative."; faction = "syndicate"},/turf/simulated/floor,/area/awaymission/listeningpost)
+"o" = (/obj/structure/table/standard,/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "november report"},/obj/item/weapon/pen,/turf/simulated/floor,/area/awaymission/listeningpost)
+"p" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; !INVALID_VAR! = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = 32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor,/area/awaymission/listeningpost)
+"q" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/mask/gas,/obj/item/clothing/head/helmet/space/syndicate,/turf/simulated/floor,/area/awaymission/listeningpost)
+"r" = (/obj/machinery/door/airlock,/obj/item/weapon/paper{info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"; name = "odd report"},/obj/item/weapon/gun/projectile/pistol,/obj/item/weapon/silencer,/turf/simulated/floor,/area/awaymission/listeningpost)
+"s" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/mineral,/area/mine/unexplored)
+"t" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/mineral,/area/mine/unexplored)
+"u" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/airless,/area)
+"v" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor,/area/awaymission/listeningpost)
+"w" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor,/area/awaymission/listeningpost)
+"x" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/awaymission/listeningpost)
+"y" = (/obj/structure/disposalpipe/segment,/turf/simulated/mineral,/area/mine/unexplored)
+"z" = (/obj/machinery/vending/cola,/turf/simulated/floor,/area/awaymission/listeningpost)
+"A" = (/obj/structure/closet,/obj/item/clothing/gloves/boxing,/turf/simulated/floor,/area/awaymission/listeningpost)
+"B" = (/obj/structure/filingcabinet,/obj/item/weapon/paper{info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; name = "april report"},/obj/item/weapon/paper{info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; name = "may report"},/obj/item/weapon/paper{info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; name = "june report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "july report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "august report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "september report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "october report"},/obj/item/weapon/paper{info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; name = "receipt"},/turf/simulated/floor,/area/awaymission/listeningpost)
+"C" = (/obj/structure/table/standard,/obj/item/weapon/paper{info = "
Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; name = "mission briefing"},/turf/simulated/floor,/area/awaymission/listeningpost)
+"D" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/awaymission/listeningpost)
+"E" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/awaymission/listeningpost)
+"F" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/mineral,/area/mine/unexplored)
+"G" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor,/area/awaymission/listeningpost)
+"H" = (/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost)
+"I" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost)
+"J" = (/obj/structure/toilet{icon_state = "toilet00"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost)
+"K" = (/turf/simulated/mineral/floor,/area/mine/unexplored)
+"L" = (/turf/simulated/floor/greengrid,/area/mine/explored)
+"M" = (/turf/simulated/mineral/floor,/area/mine/explored)
+"N" = (/obj/machinery/gateway{icon_state = "off"; dir = 9},/turf/simulated/floor/greengrid,/area/mine/explored)
+"O" = (/obj/machinery/gateway{icon_state = "off"; dir = 1},/turf/simulated/floor/greengrid,/area/mine/explored)
+"P" = (/obj/machinery/gateway{icon_state = "off"; dir = 5},/turf/simulated/floor/greengrid,/area/mine/explored)
+"Q" = (/obj/machinery/gateway{icon_state = "off"; dir = 8},/turf/simulated/floor/greengrid,/area/mine/explored)
+"R" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/greengrid,/area/mine/explored)
+"S" = (/obj/machinery/gateway{icon_state = "off"; dir = 4},/turf/simulated/floor/greengrid,/area/mine/explored)
+"T" = (/obj/machinery/gateway{icon_state = "off"; dir = 10},/turf/simulated/floor/greengrid,/area/mine/explored)
+"U" = (/obj/machinery/gateway,/turf/simulated/floor/greengrid,/area/mine/explored)
+"V" = (/obj/machinery/gateway{icon_state = "off"; dir = 6},/turf/simulated/floor/greengrid,/area/mine/explored)
(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(4,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(5,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(6,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(7,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(8,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(9,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(10,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(11,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(12,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(13,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(14,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(15,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(16,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(17,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(18,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(19,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(20,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(21,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(22,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(23,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(24,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(25,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(26,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(27,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(28,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(29,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(30,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(31,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(32,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(33,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(34,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(35,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(36,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(37,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(38,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-l
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(39,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-l
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(40,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(41,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(42,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(43,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(44,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(45,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(46,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(47,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(48,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(49,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-l
-l
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(50,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(51,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(52,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-L
-l
-b
-b
-b
-b
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(53,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-L
-M
-M
-b
-M
-l
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(54,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-L
-M
-N
-Q
-T
-M
-L
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(55,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-L
-M
-O
-R
-U
-M
-L
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(56,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-K
-K
-b
-b
-b
-b
-K
-b
-b
-b
-b
-b
-b
-b
-L
-M
-P
-S
-V
-M
-L
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(57,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-K
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-L
-M
-M
-M
-M
-M
-L
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(58,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-L
-L
-L
-L
-L
-L
-L
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(59,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(60,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-b
-b
-b
-b
-b
-b
-b
-K
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(61,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-K
-b
-b
-b
-b
-b
-b
-K
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(62,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-b
-a
-a
-b
-b
-b
-b
-a
-a
-a
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(63,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-l
-l
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(64,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(65,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-K
-b
-K
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(66,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(67,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(68,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(69,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-l
-l
-l
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(70,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-l
-l
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(71,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(72,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(73,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(74,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-a
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(75,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-a
-l
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(76,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-l
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(77,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(78,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(79,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(80,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-c
-c
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(81,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-v
-j
-A
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(82,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-c
-b
-c
-w
-j
-B
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(83,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-m
-c
-c
-c
-g
-f
-g
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(84,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-h
-n
-p
-j
-r
-j
-j
-C
-c
-c
-c
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(85,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-c
-c
-c
-i
-o
-i
-j
-g
-j
-j
-j
-G
-H
-H
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(86,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-c
-d
-f
-j
-j
-j
-j
-g
-j
-j
-D
-g
-I
-J
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(87,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-c
-e
-g
-j
-j
-j
-q
-g
-x
-z
-E
-c
-c
-c
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(88,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-c
-c
-c
-k
-k
-c
-c
-c
-c
-c
-E
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(89,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-c
-d
-d
-c
-b
-b
-b
-b
-t
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(90,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-c
-d
-d
-c
-b
-s
-y
-y
-F
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(91,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-c
-k
-k
-c
-b
-t
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(92,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-a
-b
-t
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(93,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-a
-a
-a
-a
-a
-u
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(94,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(95,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(96,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(97,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(98,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(99,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(100,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhaaaaaaaaaaaaahhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhaaaaaahhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhcccchhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhcidchhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhcccfgccccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhccjkiieiieaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalhhhhhhhhhhhhhhhhhhcmnoiieiieaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhalhhhhhhhhhhhhhhhhhhccpkiiccccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhllhhhhhhhhhhhhhhhhhhhciiiqchhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhlhhhhhhhhhhhhhhhhccccrgggchsttuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcvwgiiixchyhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhciifiiizchyhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcABgCiDEEtFhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcccccGgchhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcHIchhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcHJchhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcccchhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhlllhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhllaaahhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhlllaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhlaaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhlaaaahhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhlaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhaahhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhahhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaahhhhaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaahhhhhhhaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaahhhhhhhhhhhaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhlllllhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhlaaaahhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhllhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhKKKKhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhKLLLLMMMhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhMLLLLLMhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhLNOPLLKhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhQRSLMKhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhlhhhhhhhhhhhhhhLTUVLMKhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhllhhhhhhhhhhhhhMLLLLMhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhaalhhhhhhhhhhhhMMLLLMMhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhaaaahhhhhhhhhhhhhhhKKhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaahhhhhhaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhlhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhllhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhalhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhaalhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa
+aaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
diff --git a/maps/RandomZLevels/snowfield.dm b/maps/RandomZLevels/snowfield.dm
index f53714b0ac..8cfed032f5 100644
--- a/maps/RandomZLevels/snowfield.dm
+++ b/maps/RandomZLevels/snowfield.dm
@@ -17,10 +17,10 @@
power_environ = 0
mobcountmax = 100
floracountmax = 7000
- /*
- valid_mobs = list(/mob/living/simple_mob/hostile/samak/polar, /mob/living/simple_mob/hostile/diyaab/polar,
- /mob/living/simple_mob/hostile/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar,
- /mob/living/simple_mob/hostile/wolf)*/ //VORESTATION AI TEMPORARY REMOVAL
+
+ valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar,
+ /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar,
+ /mob/living/simple_mob/animal/wolf)
valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
/obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
/obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush,
@@ -86,13 +86,13 @@
desc = "This bastard sure isn't drinking Space Cola anymore."
..()
-/mob/living/simple_mob/hostile/samak/polar
+/mob/living/simple_mob/animal/sif/sakimm/polar
faction = "polar"
-/mob/living/simple_mob/hostile/diyaab/polar
+/mob/living/simple_mob/animal/sif/diyaab/polar
faction = "polar"
-/mob/living/simple_mob/hostile/shantak/polar
+/mob/living/simple_mob/animal/sif/shantak/polar
faction = "polar"
// -- Items -- //
diff --git a/maps/RandomZLevels/snowfield.dmm b/maps/RandomZLevels/snowfield.dmm
index 01fbbeebf6..5a2f3cad1a 100644
--- a/maps/RandomZLevels/snowfield.dmm
+++ b/maps/RandomZLevels/snowfield.dmm
@@ -1,42085 +1,389 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/unsimulated/wall/planetary/sif,
-/area/awaymission/snowfield/restricted)
-"ab" = (
-/turf/snow/snow2{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/restricted)
-"ac" = (
-/obj/effect/blocker,
-/turf/snow/snow2{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/restricted)
-"ad" = (
-/turf/snow/snow2{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/outside)
-"ae" = (
-/turf/snow/snow2{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield)
-"af" = (
-/obj/effect/landmark/away,
-/turf/snow/snow2{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield)
-"ag" = (
-/obj/machinery/light/small,
-/turf/snow/snow2{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"ah" = (
-/turf/snow/snow2{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"ai" = (
-/turf/simulated/wall/durasteel,
-/area/awaymission/snowfield/base)
-"aj" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/durasteel,
-/area/awaymission/snowfield/base)
-"ak" = (
-/obj/machinery/door/airlock/hatch,
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"al" = (
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"am" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/item/stack/cable_coil/yellow{
- amount = 2;
- icon_state = "coil2"
- },
-/obj/item/weapon/shovel,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"an" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"ao" = (
-/obj/machinery/power/smes/buildable{
- charge = 2.5e+006;
- input_attempt = 1;
- input_level = 250000;
- inputting = 1;
- output_level = 250000;
- RCon_tag = "Telecommunications Satellite"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"ap" = (
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"aq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"ar" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump-derelict";
- operating = 0;
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"as" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"at" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
-
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"au" = (
-/obj/structure/sign/biohazard,
-/turf/simulated/wall/durasteel,
-/area/awaymission/snowfield/base)
-"av" = (
-/obj/machinery/door/airlock/centcom,
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"aw" = (
-/obj/structure/table/standard,
-/obj/item/weapon/hand_labeler,
-/obj/effect/floor_decal/corner/green/full{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"ax" = (
-/obj/structure/closet/secure_closet/hydroponics{
- req_access = list(47)
- },
-/obj/effect/floor_decal/corner/green{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"ay" = (
-/obj/machinery/smartfridge/drying_rack,
-/obj/effect/floor_decal/corner/green/full{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"az" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/obj/structure/closet/crate/bin,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aA" = (
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aB" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aC" = (
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"aD" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/obj/machinery/space_heater,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aE" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/item/weapon/tool/wrench,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aF" = (
-/obj/machinery/biogenerator,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aG" = (
-/obj/machinery/seed_extractor,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aH" = (
-/obj/machinery/reagentgrinder,
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aI" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aJ" = (
-/obj/structure/closet/jcloset,
-/obj/item/weapon/soap,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"aK" = (
-/obj/structure/closet/jcloset,
-/obj/item/weapon/soap/deluxe,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"aL" = (
-/obj/structure/closet/l3closet/janitor,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"aM" = (
-/obj/structure/closet/crate/hydroponics/prespawned,
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aN" = (
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aO" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"aQ" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "Isolation to Waste"
- },
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aR" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aS" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aT" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aU" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"aV" = (
-/obj/effect/floor_decal/corner/green/full,
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "Port to Isolation"
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aW" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 9
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aX" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aY" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"aZ" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/botanydisk,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"ba" = (
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"bb" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bc" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bd" = (
-/obj/machinery/door/airlock/research{
- name = "Xenoflora Storage";
- req_access = list(55)
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"be" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bf" = (
-/obj/machinery/botany/editor,
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bg" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"bh" = (
-/obj/effect/floor_decal/corner/green/full,
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -21
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bi" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 2;
- icon_state = "freezer"
- },
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bj" = (
-/obj/machinery/atmospherics/unary/heater{
- dir = 2;
- icon_state = "heater"
- },
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bk" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"bm" = (
-/obj/machinery/botany/extractor,
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bn" = (
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/mousetraps,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"bo" = (
-/obj/machinery/door/window/northright{
- name = "Xenoflora Containment";
- req_access = list(47)
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bp" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 5
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bq" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"br" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 9
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bs" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 8
- },
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bt" = (
-/obj/effect/floor_decal/corner/green{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bu" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bv" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bw" = (
-/obj/effect/floor_decal/corner/green{
- dir = 5
- },
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bx" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"by" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"bz" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bA" = (
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bB" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -21
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bC" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bD" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/obj/item/device/radio/intercom{
- layer = 4;
- name = "Station Intercom (General)";
- pixel_y = -21
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bE" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bF" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bG" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/obj/structure/closet/l3closet/scientist,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bH" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/obj/structure/closet/medical_wall{
- pixel_y = -32
- },
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bI" = (
-/obj/machinery/seed_storage/xenobotany,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bJ" = (
-/obj/machinery/vending/hydronutrients{
- categories = 3
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bK" = (
-/obj/machinery/smartfridge,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bL" = (
-/obj/structure/table/glass,
-/obj/item/weapon/tape_roll,
-/obj/item/device/analyzer/plant_analyzer,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bM" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/white,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"bN" = (
-/obj/item/weapon/mop,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/structure/janitorialcart,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"bO" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"bP" = (
-/obj/machinery/portable_atmospherics/hydroponics{
- closed_system = 1;
- name = "isolation tray"
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bQ" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"bS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"bT" = (
-/obj/machinery/door/airlock/freezer,
-/turf/simulated/floor/tiled/hydro,
-/area/awaymission/snowfield/base)
-"bU" = (
-/obj/machinery/door/airlock/maintenance,
-/turf/simulated/floor/tiled/steel,
-/area/awaymission/snowfield/base)
-"bV" = (
-/obj/machinery/gateway{
- dir = 9
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"bW" = (
-/obj/machinery/gateway{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"bX" = (
-/obj/machinery/gateway{
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"bY" = (
-/obj/item/seeds/random,
-/obj/item/seeds/random,
-/obj/item/seeds/random,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled/freezer,
-/area/awaymission/snowfield/base)
-"bZ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"ca" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cb" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cc" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/sink/kitchen{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cd" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"ce" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/table/standard,
-/obj/machinery/microwave{
- pixel_y = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cf" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cg" = (
-/obj/structure/table/marble,
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"ch" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"ci" = (
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cj" = (
-/obj/structure/toilet,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"ck" = (
-/obj/structure/curtain/open/shower,
-/obj/machinery/door/window/southright{
- name = "Shower"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/shower{
- pixel_y = 3
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cl" = (
-/obj/machinery/gateway{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"cm" = (
-/obj/machinery/gateway/centeraway{
- calibrated = 0
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"cn" = (
-/obj/machinery/gateway{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"co" = (
-/turf/simulated/floor/tiled/freezer,
-/area/awaymission/snowfield/base)
-"cp" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cq" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cr" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cs" = (
-/obj/machinery/gateway{
- dir = 10
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"ct" = (
-/obj/machinery/gateway,
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"cu" = (
-/obj/machinery/gateway{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/reinforced,
-/area/awaymission/snowfield/base)
-"cv" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/vending/snack,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cw" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/table/standard,
-/obj/item/weapon/deck/cards,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cx" = (
-/obj/machinery/door/airlock/silver{
- name = "Restroom"
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cy" = (
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"cz" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/freezer,
-/area/awaymission/snowfield/base)
-"cA" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/awaymission/snowfield/base)
-"cB" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/vending/sovietsoda,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cC" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cD" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/floor/wood,
-/area/awaymission/snowfield/base)
-"cE" = (
-/turf/simulated/floor/wood,
-/area/awaymission/snowfield/base)
-"cF" = (
-/obj/structure/bed/padded,
-/turf/simulated/floor/wood,
-/area/awaymission/snowfield/base)
-"cG" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"cH" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"cI" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/vending/dinnerware,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cJ" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/wood,
-/area/awaymission/snowfield/base)
-"cK" = (
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/wood,
-/area/awaymission/snowfield/base)
-"cL" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/bed/chair/comfy/beige{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cM" = (
-/obj/machinery/door/airlock/highsecurity,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"cN" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/closet/crate/bin,
-/obj/item/trash/pistachios,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cO" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/space_heater,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cP" = (
-/obj/structure/simple_door/wood,
-/turf/simulated/floor/wood,
-/area/awaymission/snowfield/base)
-"cQ" = (
-/obj/machinery/door/airlock/freezer,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"cS" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/snowfield/base)
-"cT" = (
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cU" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cV" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/derelict/d9,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cW" = (
-/obj/effect/floor_decal/derelict/d10,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cX" = (
-/obj/effect/floor_decal/derelict/d11,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cY" = (
-/obj/effect/floor_decal/derelict/d12,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"cZ" = (
-/obj/effect/floor_decal/derelict/d13,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"da" = (
-/obj/effect/floor_decal/derelict/d14,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"db" = (
-/obj/effect/floor_decal/derelict/d15,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dc" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/derelict/d16,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dd" = (
-/obj/effect/floor_decal/derelict/d1,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"de" = (
-/obj/effect/floor_decal/derelict/d2,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"df" = (
-/obj/effect/floor_decal/derelict/d3,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dg" = (
-/obj/effect/floor_decal/derelict/d4,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dh" = (
-/obj/effect/floor_decal/derelict/d5,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"di" = (
-/obj/effect/floor_decal/derelict/d6,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dj" = (
-/obj/effect/floor_decal/derelict/d7,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dk" = (
-/obj/effect/floor_decal/derelict/d8,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dl" = (
-/obj/machinery/door/airlock/security,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"dn" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/door/window/southleft,
-/obj/machinery/door/window/northleft,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"do" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced{
- dir = 4;
- health = 1e+006
- },
-/turf/simulated/floor/plating,
-/area/awaymission/snowfield/base)
-"dp" = (
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/holofloor/wood,
-/area/awaymission/snowfield/base)
-"dq" = (
-/obj/machinery/door/airlock/maintenance{
- locked = 1;
- name = "Storage Access"
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dr" = (
-/obj/structure/closet/l3closet/security,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"ds" = (
-/obj/structure/closet/fireaxecabinet{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dt" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"du" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dv" = (
-/obj/structure/table/steel_reinforced,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dw" = (
-/turf/simulated/floor/grass,
-/area/awaymission/snowfield/base)
-"dx" = (
-/turf/simulated/floor/holofloor/wood,
-/area/awaymission/snowfield/base)
-"dy" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/gimmick/russian,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dz" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/l3closet/general,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dA" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/freezer/rations,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dB" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dC" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/secure/loot,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dD" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/secure/weapon,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dE" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dF" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dG" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/item/device/radio/phone,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dH" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/grass,
-/area/awaymission/snowfield/base)
-"dI" = (
-/obj/structure/bed/chair/wood{
- dir = 4
- },
-/turf/simulated/floor/holofloor/wood,
-/area/awaymission/snowfield/base)
-"dJ" = (
-/obj/structure/bed/chair/wood{
- dir = 8
- },
-/turf/simulated/floor/holofloor/wood,
-/area/awaymission/snowfield/base)
-"dK" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/grass,
-/area/awaymission/snowfield/base)
-"dL" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dM" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dN" = (
-/obj/structure/closet/bombclosetsecurity,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dO" = (
-/obj/structure/closet/medical_wall{
- pixel_y = -32
- },
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/adv,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dP" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/backpack/satchel/sec,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dQ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet,
-/obj/item/clothing/shoes/boots/winter,
-/obj/item/clothing/suit/storage/hooded/wintercoat,
-/obj/item/clothing/head/hood/winter,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dR" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/internals,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dS" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/effect/decal/remains/human,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dT" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/remains/human,
-/mob/living/simple_mob/hostile/mimic/crate,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dU" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/gmcloset,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dV" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"dW" = (
-/obj/machinery/door/airlock/highsecurity{
- locked = 1;
- name = "Secure Armoury Section";
- req_access = list(150)
- },
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dX" = (
-/obj/structure/closet,
-/obj/item/clothing/under/soviet,
-/obj/item/clothing/shoes/boots/jackboots,
-/obj/item/clothing/head/ushanka,
-/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dY" = (
-/obj/structure/closet/crate/secure/gear,
-/obj/item/ammo_magazine/clip/c762,
-/obj/item/ammo_magazine/clip/c762,
-/obj/item/ammo_magazine/clip/c762,
-/obj/item/ammo_magazine/clip/c762,
-/obj/item/ammo_magazine/clip/c762,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"dZ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
-/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"ea" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/clothing/suit/space/syndicate,
-/obj/item/clothing/head/helmet/space/syndicate,
-/obj/structure/closet/crate/internals,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"eb" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/clothing/suit/hgpirate,
-/obj/item/clothing/head/hgpiratecap,
-/obj/structure/closet/crate/secure/gear,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"ec" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/clothing/suit/armor/combat,
-/obj/structure/closet/crate/secure/gear,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"ed" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/mob/living/simple_mob/hostile/viscerator,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"ee" = (
-/mob/living/simple_mob/hostile/viscerator,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"ef" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/mob/living/simple_mob/hostile/viscerator,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"eg" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/weapon/gun/projectile/shotgun/pump/rifle/mosin,
-/turf/simulated/floor/tiled/dark,
-/area/awaymission/snowfield/base)
-"eh" = (
-/obj/structure/coatrack,
-/turf/simulated/floor/grass,
-/area/awaymission/snowfield/base)
-"ei" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/wardrobe/red,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"ej" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/medical,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/device/flashlight/flare,
-/obj/item/device/flashlight/flare,
-/obj/item/device/flashlight/flare,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"ek" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"el" = (
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"em" = (
-/obj/machinery/conveyor_switch{
- id = "away_soviet"
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"en" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/secure/phoron,
-/obj/fiftyspawner/phoron,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"eo" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/toolcloset,
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"ep" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/obj/machinery/door/airlock/centcom,
-/turf/simulated/floor/holofloor/wood,
-/area/awaymission/snowfield/base)
-"eq" = (
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor{
- dir = 2;
- id = "away_soviet"
- },
-/turf/simulated/floor/tiled/neutral,
-/area/awaymission/snowfield/base)
-"er" = (
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"es" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 4
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"et" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 1
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"eu" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 1
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"ev" = (
-/obj/machinery/conveyor_switch{
- id = "away_soviet"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 4
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"ew" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "away_soviet"
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"ex" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"ey" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 4
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"ez" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner,
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"eA" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"eB" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"eC" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"eD" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"eE" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 8
- },
-/turf/simulated/floor/tiled/asteroid_steel{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
-"eF" = (
-/turf/simulated/floor/reinforced{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/base)
+"aa" = (/turf/unsimulated/wall/planetary/sif,/area/awaymission/snowfield/restricted)
+"ab" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted)
+"ac" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted)
+"ad" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"ae" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield)
+"af" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted)
+"ag" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"ah" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base)
+"ai" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield)
+"aj" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"ak" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"al" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base)
+"am" = (/obj/machinery/light/small,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"an" = (/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside)
+"ao" = (/obj/structure/sign/electricshock,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside)
+"ap" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"aq" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"ar" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/stack/cable_coil/yellow{amount = 2; icon_state = "coil2"},/obj/item/weapon/shovel,/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"as" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"at" = (/obj/machinery/power/smes/buildable{charge = 2.5e+006; input_attempt = 1; input_level = 250000; inputting = 1; output_level = 250000; RCon_tag = "Telecommunications Satellite"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"au" = (/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"av" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"aw" = (/obj/machinery/power/apc{dir = 8; name = "west bump-derelict"; operating = 0; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"ax" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"ay" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"az" = (/obj/structure/sign/biohazard,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside)
+"aA" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"aB" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aC" = (/obj/structure/closet/secure_closet/hydroponics{req_access = list(47)},/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aD" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aE" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aG" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/machinery/atmospherics/portables_connector,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aH" = (/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"aI" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aJ" = (/obj/machinery/atmospherics/portables_connector,/obj/item/weapon/tool/wrench,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aK" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aL" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aM" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aN" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aO" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"aP" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/deluxe,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"aQ" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"aR" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aS" = (/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aT" = (/obj/effect/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"aV" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Isolation to Waste"},/obj/effect/floor_decal/corner/green/full,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aW" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aX" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aY" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"aZ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"ba" = (/obj/effect/floor_decal/corner/green/full,/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Port to Isolation"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bb" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bc" = (/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bd" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"be" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/structure/table/glass,/obj/item/weapon/storage/box/botanydisk,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bf" = (/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"bg" = (/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bi" = (/obj/machinery/door/airlock/research{name = "Xenoflora Storage"; req_access = list(55)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bj" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bk" = (/obj/machinery/botany/editor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bl" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"bm" = (/obj/effect/floor_decal/corner/green/full,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bn" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bo" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bp" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/corner/green/full{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"br" = (/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bs" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"bt" = (/obj/machinery/door/window/northright{name = "Xenoflora Containment"; req_access = list(47)},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bu" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bv" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bw" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bx" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"by" = (/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bz" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bA" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bB" = (/obj/effect/floor_decal/corner/green{dir = 5},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bC" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bD" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"bE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bG" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bH" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/structure/table/standard,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bI" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/item/device/radio/intercom{layer = 4; name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bJ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bK" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bL" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bM" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bN" = (/obj/machinery/seed_storage/xenobotany,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bO" = (/obj/machinery/vending/hydronutrients{categories = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bP" = (/obj/machinery/smartfridge,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bQ" = (/obj/structure/table/glass,/obj/item/weapon/tape_roll,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bR" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"bS" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/janitorialcart,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"bT" = (/obj/machinery/light,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"bU" = (/obj/machinery/portable_atmospherics/hydroponics{closed_system = 1; name = "isolation tray"},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bV" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"bX" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"bY" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside)
+"bZ" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside)
+"ca" = (/obj/machinery/gateway{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cb" = (/obj/machinery/gateway{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cc" = (/obj/machinery/gateway{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cd" = (/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/crate,/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside)
+"ce" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"cf" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"cg" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"ch" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/sink/kitchen{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"ci" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cj" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"ck" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cl" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cm" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cn" = (/obj/structure/table/standard,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"co" = (/obj/structure/toilet,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cp" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cq" = (/obj/machinery/gateway{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cr" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cs" = (/obj/machinery/gateway{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"ct" = (/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside)
+"cu" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cv" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cw" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cx" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cy" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cz" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside)
+"cA" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cB" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cC" = (/obj/machinery/door/airlock/silver{name = "Restroom"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cD" = (/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"cE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside)
+"cF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside)
+"cG" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/sovietsoda,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cH" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cI" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside)
+"cJ" = (/turf/simulated/floor/wood,/area/awaymission/snowfield/outside)
+"cK" = (/obj/structure/bed/padded,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside)
+"cL" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"cM" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"cN" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/dinnerware,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cO" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside)
+"cP" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/awaymission/snowfield/outside)
+"cQ" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cR" = (/obj/machinery/door/airlock/highsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"cS" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/pistachios,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cT" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cU" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside)
+"cV" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"cW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"cX" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside)
+"cY" = (/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"cZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"da" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d9,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"db" = (/obj/effect/floor_decal/derelict/d10,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dc" = (/obj/effect/floor_decal/derelict/d11,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dd" = (/obj/effect/floor_decal/derelict/d12,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"de" = (/obj/effect/floor_decal/derelict/d13,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"df" = (/obj/effect/floor_decal/derelict/d14,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dg" = (/obj/effect/floor_decal/derelict/d15,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dh" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d16,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"di" = (/obj/effect/floor_decal/derelict/d1,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dj" = (/obj/effect/floor_decal/derelict/d2,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dk" = (/obj/effect/floor_decal/derelict/d3,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dl" = (/obj/effect/floor_decal/derelict/d4,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dm" = (/obj/effect/floor_decal/derelict/d5,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dn" = (/obj/effect/floor_decal/derelict/d6,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"do" = (/obj/effect/floor_decal/derelict/d7,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dp" = (/obj/effect/floor_decal/derelict/d8,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dq" = (/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"ds" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/southleft,/obj/machinery/door/window/northleft,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dt" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside)
+"du" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside)
+"dv" = (/obj/machinery/door/airlock/maintenance{locked = 1; name = "Storage Access"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dw" = (/obj/structure/closet/l3closet/security,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dx" = (/obj/structure/closet/fireaxecabinet{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dy" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dz" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dA" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dB" = (/turf/simulated/floor/grass,/area/awaymission/snowfield/outside)
+"dC" = (/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside)
+"dD" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gimmick/russian,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/l3closet/general,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer/rations,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/weapon,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dJ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dK" = (/obj/structure/closet/firecloset,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dL" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/device/radio/phone,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dM" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside)
+"dN" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside)
+"dO" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside)
+"dP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside)
+"dQ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dR" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dS" = (/obj/structure/closet/bombclosetsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dT" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/shuttle/awaymission/oldengbase)
+"dU" = (/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dV" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/backpack/satchel/sec,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"dW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/head/hood/winter,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dY" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/remains/human,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"dZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/remains/human,/obj/structure/closet/crate/mimic/guaranteed{name = "steel crate"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"ea" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gmcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"eb" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"ec" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "Secure Armoury Section"; req_access = list(150)},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"ed" = (/obj/structure/closet,/obj/item/clothing/under/soviet,/obj/item/clothing/shoes/boots/jackboots,/obj/item/clothing/head/ushanka,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"ee" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"ef" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"eg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/head/helmet/space/syndicate,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"eh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/hgpirate,/obj/item/clothing/head/hgpiratecap,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"ei" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/armor/combat,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"ej" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"ek" = (/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"el" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"em" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside)
+"en" = (/obj/structure/coatrack,/turf/simulated/floor/grass,/area/awaymission/snowfield/outside)
+"eo" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/wardrobe/red,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"ep" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"eq" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"er" = (/obj/effect/floor_decal/industrial/loading{icon_state = "loadingarea"; dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"es" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"et" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/phoron,/obj/fiftyspawner/phoron,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"eu" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/toolcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"ev" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/door/airlock/centcom,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside)
+"ew" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside)
+"ex" = (/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"ey" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"ez" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eA" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eB" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eC" = (/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eD" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eE" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eF" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eG" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eH" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eI" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eJ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eK" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
+"eL" = (/turf/simulated/floor/reinforced{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside)
(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(3,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(4,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(5,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(6,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(7,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(8,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(9,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(10,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(11,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(12,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(13,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(14,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(15,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(16,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(17,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(18,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(19,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(20,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(21,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(22,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(23,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(24,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(25,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(26,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(27,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(28,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(29,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(30,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(31,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(32,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(33,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(34,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(35,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(36,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(37,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(38,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(39,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(40,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(41,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(42,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(43,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(44,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(45,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(46,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(47,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(48,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(49,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(50,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(51,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(52,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(53,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(54,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(55,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(56,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(57,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(58,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(59,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(60,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(61,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(62,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(63,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(64,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(65,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(66,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(67,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(68,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(69,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(70,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(71,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(72,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(73,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(74,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(75,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(76,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(77,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(78,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(79,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(80,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(81,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(82,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(83,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(84,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(85,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(86,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(87,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(88,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(89,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(90,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(91,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aw
-aM
-bb
-bh
-bo
-bz
-ai
-ai
-ci
-cr
-ai
-cD
-cJ
-cD
-ai
-cT
-cT
-ai
-dr
-dF
-dN
-ai
-dX
-ed
-dX
-ai
-er
-er
-ez
-ey
-ey
-ey
-ey
-ey
-ey
-ey
-ey
-ey
-ey
-es
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(92,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ax
-aN
-aN
-bi
-bp
-aC
-bP
-ai
-cj
-aN
-cx
-cE
-cE
-cE
-cP
-cT
-cT
-dl
-cy
-cy
-cy
-ai
-dX
-ee
-dX
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(93,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ax
-aN
-bc
-bj
-bq
-bA
-bQ
-ai
-ck
-aN
-ai
-cF
-cK
-cF
-ai
-cT
-cT
-ai
-cy
-cy
-cy
-ai
-dX
-ee
-dX
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(94,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ay
-aO
-aO
-bk
-br
-bB
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-cU
-cT
-ai
-ds
-cy
-cy
-dW
-cy
-ee
-cy
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(95,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ai
-aP
-bd
-bl
-ai
-ai
-ai
-bV
-cl
-cs
-cy
-cG
-cy
-ai
-cy
-cT
-cT
-dm
-dt
-cy
-dO
-ai
-dY
-ee
-eg
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(96,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-az
-aQ
-aC
-aC
-bs
-bC
-ai
-bW
-cm
-ct
-cy
-cy
-cy
-cM
-cy
-cT
-cT
-dn
-du
-cy
-cy
-ai
-dY
-ee
-eg
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(97,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aA
-aR
-aC
-aC
-bt
-bD
-ai
-bX
-cn
-cu
-cy
-cH
-cy
-ai
-cy
-cT
-cT
-do
-dv
-dG
-dP
-ai
-dY
-ef
-eg
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(98,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ai
-ai
-ai
-ai
-aA
-aS
-aC
-aC
-bt
-bE
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-cV
-dd
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(99,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-al
-ap
-ar
-ai
-aB
-aT
-be
-be
-bt
-bF
-bR
-bY
-co
-bY
-cz
-bY
-co
-bY
-bR
-cW
-de
-ai
-dw
-dH
-dw
-dw
-dw
-dH
-dw
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(100,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ag
-aj
-am
-ap
-as
-au
-aC
-aU
-be
-be
-bu
-bG
-bS
-bY
-co
-bY
-co
-bY
-co
-bY
-bS
-cX
-df
-ai
-dw
-dI
-dI
-dw
-dI
-dI
-eh
-ai
-es
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(101,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ah
-ak
-an
-ap
-as
-av
-aC
-aU
-be
-be
-aC
-aC
-bT
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-cQ
-cY
-dg
-dp
-dx
-dx
-dx
-dx
-dx
-dx
-dx
-ep
-et
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(102,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ao
-aq
-at
-aj
-aC
-aU
-be
-be
-aC
-aC
-bT
-ca
-ca
-ca
-ca
-ca
-ca
-ca
-cQ
-cZ
-dh
-dp
-dx
-dx
-dx
-dx
-dx
-dx
-dx
-ep
-et
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(103,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ai
-ai
-ai
-ai
-aD
-aV
-be
-be
-bv
-bH
-bR
-bY
-co
-bY
-co
-bY
-co
-bY
-bR
-da
-di
-ai
-dw
-dJ
-dJ
-dw
-dJ
-dJ
-eh
-ai
-eu
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(104,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aE
-aW
-aC
-aC
-bt
-bI
-bS
-bY
-co
-bY
-cA
-bY
-co
-bY
-bS
-db
-dj
-ai
-dw
-dK
-dw
-dw
-dw
-dK
-dw
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(105,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aF
-aX
-aC
-aC
-bt
-bJ
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-dc
-dk
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(106,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aG
-aX
-aC
-aC
-bt
-bK
-ai
-cb
-cp
-cv
-cB
-cI
-cd
-cN
-bR
-cT
-cT
-ai
-dy
-dL
-dQ
-dB
-dZ
-dL
-ei
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(107,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aH
-aY
-aC
-aC
-bw
-bL
-ai
-cc
-ch
-ch
-ch
-ch
-ch
-ch
-cR
-cT
-cT
-ai
-dz
-dB
-dC
-dB
-dC
-dB
-ej
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(108,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aI
-aZ
-bf
-bm
-bx
-bM
-ai
-cd
-ch
-cq
-cq
-ch
-ch
-ch
-bS
-cT
-cT
-ai
-dA
-dB
-dR
-dB
-ea
-dB
-ek
-ai
-ev
-ey
-eB
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(109,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ce
-cq
-cd
-cd
-cq
-ch
-cO
-ai
-cU
-cT
-dq
-dB
-dB
-dS
-dB
-dB
-dB
-el
-eq
-ew
-ew
-eC
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(110,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aJ
-ba
-bg
-bn
-by
-bN
-ai
-cf
-cq
-cw
-cd
-cq
-ch
-ch
-ai
-cT
-cT
-ai
-dC
-dB
-dT
-dB
-dC
-dB
-em
-ai
-ex
-ex
-eD
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(111,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aK
-ba
-ba
-ba
-ba
-bO
-ai
-cg
-ch
-cq
-cq
-ch
-ch
-ch
-cS
-cT
-cT
-ai
-dD
-dB
-dU
-dB
-eb
-dB
-en
-ai
-er
-er
-eA
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-et
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(112,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-aL
-ba
-ba
-ba
-ba
-ba
-bU
-ch
-ch
-ch
-cC
-ch
-cL
-cL
-ai
-cT
-cT
-ai
-dE
-dM
-dV
-dB
-ec
-dM
-eo
-ai
-er
-er
-eE
-ex
-ex
-ex
-ex
-ex
-ex
-ex
-ex
-ex
-ex
-eu
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(113,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(114,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(115,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(116,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(117,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(118,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(119,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(120,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(121,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(122,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(123,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(124,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(125,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(126,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(127,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(128,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(129,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(130,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(131,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(132,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(133,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(134,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(135,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(136,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(137,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(138,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(139,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(140,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(141,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(142,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(143,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(144,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(145,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(146,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(147,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(148,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(149,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(150,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(151,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(152,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(153,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(154,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(155,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(156,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(157,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(158,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(159,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-af
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(160,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(161,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ae
-ae
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(162,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(163,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(164,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(165,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(166,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(167,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(168,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(169,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(170,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(171,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(172,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(173,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(174,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(175,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(176,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(177,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(178,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(179,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(180,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(181,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(182,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(183,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(184,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(185,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(186,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(187,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(188,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(189,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(190,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(191,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(192,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(193,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(194,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(195,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(196,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(197,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(198,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(199,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(200,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad
+aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad
+aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad
+aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad
+aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad
+aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad
+aaabababababababafagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagaiaiaiagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagajadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahalahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadakadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaddTadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadamadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananaoapananadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaqarasatanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanauauauavanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanawaxaxayanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananananananananazaAaoanananananananananananadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaBaCaCaDanaEaFaFaGaHaHaHaIaJaKaLaMaNanaOaPaQanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaRaSaSaTaUaVaWaXaYaZaZaZbabbbcbcbdbeanbfbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbgaSbhaTbiaHaHaHbjbjbjbjbjaHaHaHaHbkanblbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbmbnbobpbqaHaHaHbjbjbjbjbjaHaHaHaHbranbsbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbtbubvbwanbxbybybybzaHaHbAbybybybBbCanbDbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbEaHbFbGanbHbIbJbKbLaHaHbMbNbObPbQbRanbSbTbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananbUbVanananananbWbXbYbYbWbXanananananananbZanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananancacbccancdcdcecfcdcdancgchcicjckclcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancncocpancqcrcsanctctcecfctctancucmcmcvcvcmcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancwaSaSancxcyczancdcdcecfcdcdancAcmcvcicBcvcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancCanancDcDcDancEctcecfctcFancGcmcvcicicvcHanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKancLcDcMancdcdcecfcdcdancNcmcmcvcvcmcmanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancOcJcPancDcDcDanctctcecfctctancicmcmcmcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKanancRanancdcdcecfcdcdancScmcmcTcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancUanancDcDcDanbWbXcVcVbWbXanbWcWbXanancXananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadancYcYcYcZcYcYcYdadbdcdddedfdgdhcYcYcYcZcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadancYcYcYcYcYcYcYdidjdkdldmdndodpcYcYcYcYcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadanandqanandrdsdtanananduduanananananandvananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadandwcDcDdxdydzdAandBdBdCdCdBdBandDdEdFdGdHdIdJanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadandKcDcDcDcDcDdLandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadandScDcDcDdUcDdVandBdNdCdCdOdBandWdHdXdYdZeaebanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananecanananandBdBdCdCdBdBandGdGdGdGdGdGdGanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDeeeeeeandBdNdCdCdOdBanefdHegdGdHeheianadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanejekekekekekelandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDemememandBendCdCendBaneoepeqereseteuanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanananananananananananevevananananananewananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexeyezezeAexexexexeBeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexexexexexexexexexeEeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeFeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeHeIeJeGeKadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeyezezezezezezezezezezezezezezezezezezezezeAadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad
+aaabababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabababababab
+aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index 1e893f86be..eba5106efa 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -167,7 +167,52 @@
name = "Away Mission - Debris Field"
z = Z_LEVEL_DEBRISFIELD
+//////////////////////////////////////////////////////////////////////////////////////
+// Gateway submaps go here
+/datum/map_template/tether_lateload/gateway
+ name = "Gateway Submap"
+ desc = "Please do not use this."
+ mappath = null
+ associated_map_datum = null
+/datum/map_z_level/tether_lateload/gateway_destination
+ name = "Gateway Destination"
+ z = Z_LEVEL_GATEWAY
+
+#include "gateway/snow_outpost.dm"
+/datum/map_template/tether_lateload/gateway/snow_outpost
+ name = "Snow Outpost"
+ desc = "Big snowy area with various outposts."
+ mappath = 'gateway/snow_outpost.dmm'
+ associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination
+
+#include "gateway/zoo.dm"
+/datum/map_template/tether_lateload/gateway/zoo
+ name = "Zoo"
+ desc = "Gigantic space zoo"
+ mappath = 'gateway/zoo.dmm'
+ associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination
+
+#include "gateway/carpfarm.dm"
+/datum/map_template/tether_lateload/gateway/carpfarm
+ name = "Carp Farm"
+ desc = "Asteroid base surrounded by carp"
+ mappath = 'gateway/carpfarm.dmm'
+ associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination
+
+#include "gateway/snowfield.dm"
+/datum/map_template/tether_lateload/gateway/snowfield
+ name = "Snow Field"
+ desc = "An old base in middle of snowy wasteland"
+ mappath = 'gateway/snowfield.dmm'
+ associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination
+
+#include "gateway/listeningpost.dm"
+/datum/map_template/tether_lateload/gateway/listeningpost
+ name = "Listening Post"
+ desc = "Asteroid-bound mercenary listening post"
+ mappath = 'gateway/listeningpost.dmm'
+ associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination
//////////////////////////////////////////////////////////////////////////////////////
// Admin-use z-levels for loading whenever an admin feels like
#if AWAY_MISSION_TEST
diff --git a/maps/tether/submaps/gateway/carpfarm.dm b/maps/tether/submaps/gateway/carpfarm.dm
new file mode 100644
index 0000000000..b5f0524e2c
--- /dev/null
+++ b/maps/tether/submaps/gateway/carpfarm.dm
@@ -0,0 +1,22 @@
+/area/awaymission/carpfarm
+ icon_state = "blank"
+ requires_power = 0
+
+/area/awaymission/carpfarm/arrival
+ icon_state = "away"
+ requires_power = 0
+
+/area/awaymission/carpfarm/base
+ icon_state = "away"
+
+/area/awaymission/carpfarm/base/entry
+ icon_state = "blue"
+
+/obj/item/weapon/paper/awaygate/carpfarm/suicide
+ name = "suicide letter"
+ info = "dear rescue,
my name markov. if reading this, i am dead. i
am was miner for 3rd union of soviet socialist republiks. \
+ comrades yuri, dimitri, ivan, all eaten by space carp. all started month ago when soviet shipment sent new sonic jackhammers. \
+ carp attracted to vibrations. killed dimitri. yuri thought good idea to jury-rig hoverpods with lasers. not good idea. \
+ very bad idea. only pissed them off. giant white carp appeared. killed ivan. then giant carp cracked yuri pod like \
+ eggshell and swallowed yuri.
no food. can't call help. carp chewed comms relay. 2 weeks since then. \
+ can't eat carp. is poison.
avenge comrades. avenge me. i die in glory.
-markov"
\ No newline at end of file
diff --git a/maps/tether/submaps/gateway/carpfarm.dmm b/maps/tether/submaps/gateway/carpfarm.dmm
new file mode 100644
index 0000000000..167369911c
--- /dev/null
+++ b/maps/tether/submaps/gateway/carpfarm.dmm
@@ -0,0 +1,20645 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/obj/effect/blocker,
+/turf/space{
+ density = 1;
+ desc = "You can't go there!";
+ name = "The 4th Wall"
+ },
+/area/space)
+"ac" = (
+/turf/simulated/mineral,
+/area/space)
+"ad" = (
+/obj/effect/blocker,
+/turf/space,
+/area/space)
+"ae" = (
+/mob/living/simple_mob/animal/space/carp,
+/turf/space,
+/area/space)
+"af" = (
+/obj/effect/landmark/gateway_scatter,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/space)
+"ah" = (
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/space)
+"aj" = (
+/obj/item/weapon/pickaxe/jackhammer,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/space)
+"ak" = (
+/turf/simulated/mineral,
+/area/mine/unexplored)
+"al" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"am" = (
+/turf/simulated/wall/iron,
+/area/awaymission/carpfarm/base)
+"an" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/power/smes/buildable,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"ao" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"ap" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aq" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"ar" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"as" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"at" = (
+/obj/machinery/shower{
+ dir = 4;
+ icon_state = "shower";
+ pixel_x = 5
+ },
+/obj/machinery/door/window,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/carpfarm/base)
+"au" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/carpfarm/base)
+"av" = (
+/obj/machinery/door/airlock/silver,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/carpfarm/base)
+"aw" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/carpfarm/base)
+"ax" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/lino,
+/area/awaymission/carpfarm/base)
+"ay" = (
+/obj/structure/bedsheetbin,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/carpfarm/base)
+"az" = (
+/obj/item/weapon/storage/toolbox/electrical,
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/item/weapon/paper/awaygate/carpfarm/suicide,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aB" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aC" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"aD" = (
+/obj/machinery/gateway/centeraway{
+ calibrated = 0
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"aE" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"aF" = (
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/carpfarm/base)
+"aG" = (
+/turf/simulated/floor/tiled/white,
+/area/awaymission/carpfarm/base)
+"aH" = (
+/obj/item/weapon/bedsheet,
+/obj/structure/bed/padded,
+/turf/simulated/floor/lino,
+/area/awaymission/carpfarm/base)
+"aI" = (
+/turf/simulated/floor/lino,
+/area/awaymission/carpfarm/base)
+"aJ" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/void/mining,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/mining,
+/obj/item/weapon/mining_scanner,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aK" = (
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aL" = (
+/obj/structure/closet/toolcloset,
+/obj/item/weapon/pickaxe/jackhammer,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aM" = (
+/obj/machinery/gateway{
+ density = 0;
+ dir = 10
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"aN" = (
+/obj/machinery/gateway,
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"aO" = (
+/obj/machinery/gateway{
+ density = 0;
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/carpfarm/base)
+"aP" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/carpfarm/base)
+"aQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"aR" = (
+/obj/structure/table/woodentable,
+/obj/random/action_figure,
+/turf/simulated/floor/lino,
+/area/awaymission/carpfarm/base)
+"aS" = (
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"aT" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"aU" = (
+/obj/structure/closet/jcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"aV" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"aW" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aX" = (
+/obj/machinery/door/airlock/hatch,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aY" = (
+/obj/machinery/door/airlock/silver,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"aZ" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/lino,
+/area/awaymission/carpfarm/base)
+"ba" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"bb" = (
+/obj/structure/table/reinforced,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bc" = (
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bd" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"be" = (
+/obj/structure/closet/gimmick/russian,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bf" = (
+/obj/structure/closet/gimmick/russian,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/freezer,
+/obj/item/trash/syndi_cakes,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bh" = (
+/obj/structure/closet/wardrobe/black,
+/obj/item/clothing/under/syndicate/tacticool,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bi" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/landmark/costume,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bj" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bk" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/crate/internals,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bl" = (
+/obj/structure/closet/crate/internals,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bm" = (
+/obj/structure/closet/crate/plastic,
+/obj/random/contraband,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bn" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/weapon,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bo" = (
+/obj/machinery/door/airlock/mining,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bp" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bq" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"br" = (
+/obj/item/mecha_parts/mecha_equipment/tool/drill,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bs" = (
+/obj/structure/ore_box,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bu" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bv" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bw" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bx" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"by" = (
+/obj/machinery/vending/coffee{
+ prices = list()
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bz" = (
+/obj/machinery/vending/sovietsoda,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bA" = (
+/obj/machinery/vending/snack{
+ prices = list()
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bB" = (
+/obj/machinery/vending/cigarette{
+ prices = list()
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bC" = (
+/obj/machinery/vending/dinnerware,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bD" = (
+/obj/structure/closet/crate/secure/weapon,
+/obj/item/weapon/gun/projectile/shotgun/pump/rifle,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bE" = (
+/obj/structure/closet/crate/secure/weapon,
+/obj/item/ammo_magazine/clip/c762,
+/obj/item/ammo_magazine/clip/c762,
+/obj/item/ammo_magazine/clip/c762,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bF" = (
+/obj/structure/dispenser/oxygen,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1;
+ icon_state = "map"
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ icon_state = "intact"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1375;
+ master_tag = "carp_airlock";
+ name = "interior access button";
+ pixel_x = 26;
+ pixel_y = -26;
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bK" = (
+/obj/machinery/suit_cycler/mining,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bL" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bM" = (
+/obj/mecha/working/hoverpod/combatpod,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bN" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bO" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/carpfarm/base)
+"bP" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/simulated/wall/iron,
+/area/awaymission/carpfarm/base)
+"bQ" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1375;
+ icon_state = "door_locked";
+ id_tag = "carp_inner";
+ locked = 1;
+ name = "External Access";
+ req_access = newlist()
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"bR" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bS" = (
+/obj/item/weapon/reagent_containers/food/snacks/cubancarp,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bT" = (
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bU" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bV" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1375;
+ id_tag = "carp_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1375;
+ id_tag = "carp_airlock";
+ pixel_x = -28;
+ pixel_y = 0;
+ req_access = null;
+ tag_airpump = "carp_pump";
+ tag_chamber_sensor = "carp_sensor";
+ tag_exterior_door = "carp_outer";
+ tag_interior_door = "carp_inner"
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ icon_state = "warningcee";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"bW" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1375;
+ id_tag = "carp_pump"
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ icon_state = "warningcee";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"bX" = (
+/obj/structure/closet/emcloset,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/machinery/airlock_sensor{
+ frequency = 1375;
+ id_tag = "carp_sensor";
+ pixel_x = 28
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"bY" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"bZ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"ca" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/closet/crate/bin,
+/obj/item/trash/candy/proteinbar,
+/turf/simulated/floor/tiled,
+/area/awaymission/carpfarm/base)
+"cb" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1375;
+ icon_state = "door_locked";
+ id_tag = "carp_outer";
+ locked = 1;
+ name = "External Access";
+ req_access = newlist()
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/carpfarm/base)
+"cc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/carpfarm/base)
+"cd" = (
+/turf/simulated/floor/airless,
+/area/awaymission/carpfarm/base)
+"ce" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1375;
+ master_tag = "carp_airlock";
+ name = "exterior access button";
+ pixel_x = 26;
+ pixel_y = 26;
+ req_access = newlist()
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/carpfarm/base)
+"cf" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"cg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"ch" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"ci" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"cj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"ck" = (
+/turf/simulated/floor/airless,
+/area/space)
+"cl" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"cm" = (
+/obj/effect/gibspawner/human,
+/turf/simulated/floor/airless,
+/area/space)
+"cn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"co" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/airless,
+/area/space)
+"cp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/airless,
+/area/space)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(21,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(22,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(23,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(24,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(25,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(26,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ac
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+aj
+af
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(31,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+af
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(32,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(33,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+af
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(34,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(35,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(36,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(37,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(38,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(40,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(41,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(42,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(43,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(44,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(45,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(46,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(47,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(48,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(49,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(50,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(51,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+af
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(52,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(53,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(54,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+aj
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(55,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ak
+ak
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+af
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(56,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(57,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(58,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+af
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(59,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(60,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(61,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(62,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+ba
+ba
+ba
+am
+am
+am
+am
+am
+am
+al
+al
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(63,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+an
+az
+aJ
+aJ
+aJ
+am
+bb
+bb
+bb
+am
+bq
+bc
+bc
+bM
+am
+al
+aa
+aa
+al
+al
+aa
+al
+al
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(64,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+ao
+aA
+aK
+aK
+aK
+aW
+bc
+bc
+bc
+am
+br
+bc
+bc
+bN
+am
+al
+aa
+aa
+al
+al
+al
+al
+al
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(65,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+ap
+aB
+aL
+aL
+aL
+am
+bc
+bc
+bc
+am
+bs
+bc
+bG
+bO
+am
+al
+aa
+aa
+al
+al
+aa
+al
+al
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(66,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+bd
+bc
+bc
+am
+bt
+bc
+bH
+bP
+am
+am
+cc
+cg
+cj
+cj
+cj
+cj
+cj
+cn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(67,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aq
+aC
+aM
+aQ
+aS
+am
+bc
+bc
+bc
+am
+bu
+bc
+bI
+bQ
+bV
+cb
+cd
+ch
+ck
+ck
+ck
+ck
+cm
+co
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(68,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+ar
+aD
+aN
+aQ
+aS
+aX
+bc
+bc
+bc
+bo
+bc
+bc
+bJ
+bQ
+bW
+cb
+ce
+ch
+ck
+ck
+ck
+ck
+ck
+co
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(69,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+as
+aE
+aO
+aQ
+aS
+am
+bc
+bc
+bc
+am
+bv
+bF
+bK
+am
+bX
+am
+cd
+ci
+cl
+cl
+cl
+cl
+cl
+cp
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(70,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+bd
+bc
+bc
+am
+am
+am
+am
+am
+am
+am
+ak
+aa
+al
+al
+aa
+al
+al
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(71,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+at
+aF
+aP
+aP
+aP
+am
+bc
+bc
+bc
+am
+bw
+bx
+bx
+bx
+bY
+am
+ak
+ak
+al
+al
+al
+al
+al
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(72,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+au
+aG
+aG
+aG
+aG
+aY
+bc
+bc
+bc
+bp
+bx
+bx
+bx
+bx
+bx
+am
+ak
+ak
+ak
+al
+aa
+al
+al
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(73,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+av
+am
+av
+am
+av
+am
+bc
+bc
+bc
+am
+by
+bx
+bx
+bR
+bx
+am
+ak
+ak
+ak
+ak
+ak
+ak
+al
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(74,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aw
+am
+aw
+am
+aw
+am
+bc
+bc
+bc
+am
+bz
+bx
+bL
+bS
+bZ
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(75,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+bd
+bc
+bc
+am
+bA
+bx
+bL
+bT
+bZ
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(76,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+ax
+aH
+aI
+aR
+aH
+am
+bc
+bc
+bc
+am
+bB
+bx
+bx
+bU
+bx
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(77,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+ay
+aI
+aI
+aI
+aI
+aZ
+bc
+bc
+bc
+bp
+bx
+bx
+bx
+bx
+bx
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(78,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+ax
+aH
+aI
+ax
+aH
+am
+bc
+bc
+bc
+am
+bC
+bx
+bx
+bx
+ca
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(79,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+am
+bj
+am
+am
+am
+am
+am
+am
+am
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(80,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aT
+aS
+be
+aS
+bk
+aS
+bD
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(81,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aT
+aS
+bf
+aS
+bl
+aS
+bE
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(82,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aS
+aS
+aS
+aS
+aS
+aS
+aS
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(83,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aS
+aS
+aS
+aS
+aS
+aS
+aS
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(84,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aU
+aS
+bg
+aS
+bm
+aS
+aT
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(85,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aV
+aS
+bh
+aS
+aT
+aS
+aT
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(86,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+aV
+aS
+bi
+aS
+bn
+aS
+aT
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(87,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+am
+am
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(88,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(89,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(90,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(91,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(92,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(93,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(94,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(95,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(96,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(97,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(98,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(99,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(100,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(101,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(102,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(103,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(104,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(105,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(106,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(107,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(108,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ah
+ah
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(109,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+ak
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(110,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ah
+ah
+af
+ah
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+ak
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ak
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(111,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(112,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(113,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(114,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ah
+ah
+aj
+ah
+af
+ah
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(115,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(116,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(117,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(118,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ah
+ah
+af
+ah
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(119,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ah
+ah
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(120,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ah
+ah
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(121,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(122,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(123,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(124,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(125,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(126,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(127,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(128,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(129,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(130,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(131,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(132,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(133,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(134,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(135,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(136,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(137,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(138,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(139,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(140,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/maps/tether/submaps/gateway/listeningpost.dm b/maps/tether/submaps/gateway/listeningpost.dm
new file mode 100644
index 0000000000..5f32d82147
--- /dev/null
+++ b/maps/tether/submaps/gateway/listeningpost.dm
@@ -0,0 +1,221 @@
+/obj/item/weapon/paper/listneningpost/mission
+ name = "\improper Operation: Watchtower"
+ info = {"
Mission Details: You have been assigned to a newly constructed listening post
+ constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations.
+ Accurate intel is crucial to the success of our operatives onboard, do not fail us."}
+
+/obj/item/weapon/paper/listneningpost/reciept
+ name = "\improper SpacEx reciept"
+ info = {"1 x Stechtkin pistol plus ammo - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"}
+
+
+//////// 2558 ////////
+
+/obj/item/weapon/paper/listneningpost/year2558/april
+ name = "\improper April 2558 report"
+ info = {"A good start to the operation: intercepted Nanotrasen military communications.
+ A convoy is scheduled to transfer nuclear warheads to a new military base. This
+ is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."}
+
+/obj/item/weapon/paper/listneningpost/year2558/may
+ name = "\improper May 2558 report"
+ info = {"I have intercepted faint transmissions from what appears to be some sort of pirate
+ radio station. They do not appear to be relevant to my assignment. I also learned that
+ the NDV Brutus is back in operation after being taken out of commission during our
+ attack in March. Ever since Townes got killed, we've lost our eyes on the inside at
+ Nanotrasen. Hence my being here..."}
+
+/obj/item/weapon/paper/listneningpost/year2558/june
+ name = "\improper June 2558 Report"
+ info = {"Sounds like Nanotrasen stepped up their recruitment efforts. Virgo is no longer a
+ secluded research station, and its scientists are no longer hand-picked. This could
+ be a major oppertunity for us to start snooping around."}
+
+/obj/item/weapon/paper/listneningpost/year2558/july
+ name = "\improper July 2558 Report"
+ info = {"The crew has at least tripled in size since NT got rid of the application-based
+ process of recruitment. We've managed to find a few people interested in aiding
+ our cause. From atmospherics sabotoge to straight up bombing the place, we've got
+ several people ready to go in posing as nothing but more grey tide. It's perfect."}
+
+/obj/item/weapon/paper/listneningpost/year2558/august
+ name = "\improper August 2558 Report"
+ info = {"Sounds like our agents have been successful in rattling things up. With their recuitment
+ policies laxed, we've been able to carry out several attacks on the VORE. It sounds like
+ we're the least of their problems, though. They've discovered a new technology. Something
+ they're calling Redspace."}
+
+/obj/item/weapon/paper/listneningpost/year2558/september
+ name = "\improper September 2558 Report"
+ info = {"Something REALLY BAD is brewing at the VORE. This Redspace shit seems to have attracted
+ the attention of the cult of Nar-Sie. I think Nanotrasen is trying to weaponize it. We
+ need to put a stop to this before Nanotrasen can use these weapons against innocent
+ people and rival companies."}
+
+/obj/item/weapon/paper/listneningpost/year2558/october
+ name = "\improper October 2558 Report"
+ info = {"Oh my god, if it weren't for the impending doom, I'd be laughing my ass off at
+ all the hell VORE has put up with this month. Near mutiny over a retarded clown,
+ redspace aliens coming to kill them, and then V.G. Station crew getting mixed up
+ in a transfer which led to a major riot where DEATHSQUAD had to come clean up the
+ mess! We shouldn't have to worry about the VORE, but they know about something
+ called the Citadel. Apparently the cultists are trying to use redspace to bring
+ in an army from another dimension. We have no time left. We have to strike while
+ there's still something worth saving."}
+
+/obj/item/weapon/paper/listneningpost/year2558/november
+ name = "\improper November 2558 Report"
+ info = {"Maybe these VORE people aren't so bad after all. Mike says they actually HELPED during
+ our (apparently failed) attack on the Citadel. Shame they work for an evil corporation
+ like Nanotrasen though. They seem like a group of okay guys. Anyway, beside that, there
+ was a lot of commotion at the VORE recently. Space-time anomalies or something. Some
+ crazy guy showed up on the station claiming he's from 1945. The crew seems to think it's
+ legit though. Maybe he is. I don't think he is though. I'll keep monitoring the situation."}
+
+/obj/item/weapon/paper/listneningpost/year2558/december
+ name = "\improper December 2558 Report"
+ info = {"We hired a merc to capture their top Redspace scientist Kisuke Gema. Unfortunately, Colonel
+ Morgan was a fucking idiot as usual and turned his back for half a second, and the nerd cut
+ his fucking head off WITH HIS OWN ENERGY SWORD. At least the asshole didn't get any credit
+ for it. Sicko fuck took Morgan's severed head back with him as proof, but some janitor found
+ it and got all the credit and a big promotion. Just to add insult to injury, Santa visited
+ their station. IN PERSON. Meanwhile all I got was fucking socks... Okay fine I did need the
+ socks. It's cold as balls on this outpost... Damn it I'm lonely."}
+
+//////// 2559 ////////
+
+/obj/item/weapon/paper/listneningpost/year2559/january
+ name = "\improper January 2559 Report"
+ info = {"So, this guy from 1945 is legit. His name is Chase Monroe and he's a former Seargent in
+ the USCM or something. Although I feel like the USCM didn't exist in 1945. Also a pirate
+ stole one of our ships this month. A week later, the VORE gets attacked by some asshole
+ pirate flying one of our ships. Probably the same guy. They managed to take a hostage,
+ blow several bombs on the station, and even steal the nuke. VORE's security forces are
+ showing serious signs of weakness. Maybe we could exploit this."}
+
+/obj/item/weapon/paper/listneningpost/year2559/february
+ name = "\improper February 2559 Report"
+ info = {"Sounds like the World War 2 guy from Earth brought some unwanted friends along. Early
+ in the month, a battlecruiser showed up out of nowhere and started shooting up the station
+ and Central Command. They even knocked the Brutus out of commission. The Icarus apparently
+ sacrificed its self to protect the station and CentCom until the Soviets showed up. I guess
+ the Soviets got a beef with these guys too. Sounds like they jacked one of the Soviet's ships.
+ Makes sense, because a battleship like that doesn't just appear out of nowhere."}
+
+/obj/item/weapon/paper/listneningpost/year2559/march
+ name = "\improper March 2559 Report"
+ info = {"Hard to believe it's already been a year. NT's private navy has been running exercises more
+ often than usual. They also replaced the Icarus with a new and more heavily armed cruiser called
+ the Daedalus. They also have this new Battlenet AI which brought the VORE crew on a simulated
+ reenactment of Operation Magnum. They even had a copy of Townes, played by a cyborg. There have
+ been some really cryptic messages popping up though. It's eerily familiar. The message just keeps
+ repeating Bible verses and saying 'The Truth will set you free'... It's like what Townes used to
+ say about Nanotrasen. The Truth will set us free. The truth about all the atrocities Nanotrasen
+ has done over the years."}
+
+/obj/item/weapon/paper/listneningpost/year2559/april
+ name = "\improper April 2559 Report"
+ info = {"We were approached today by a man calling himself the 'Werwolf', alleged to be part of that group
+ that attacked Nanotrasen in early February. We never understood his motives WHY he attacked them.
+ Maybe he was trying to win brownie points with the Syndicate. If that was his goal, he's done well.
+ He offered to buy those nukes we stole last year. He also expressed great interest in our singularity
+ beacons. He's offered us a huge cache of weapons and a hefty sum in ancient gold and silver artifacts.
+ I think we're going to take the deal. When I get confirmation, I'll forward a line to Mike and Dave to
+ make the trade."}
+
+/obj/item/weapon/paper/listneningpost/year2559/may
+ name = "\improper May 2559 Report"
+ info = {"V.O.R.E. found something. An abandoned space station with a weapon called a mind flayer. There's also
+ rumor about some sort of a secret weapon NT was developing; a singularity bomb. Nothing of else of
+ real interest to report."}
+
+/obj/item/weapon/paper/listneningpost/year2559/june
+ name = "\improper June 2559 Report"
+ info = {"The WW2 guy is dead. Went out in a blaze of glory killing Space Nazis. Mike and Dave are pissed.
+ They apparently broke protocol and went to help the V.O.R.E. crew in the attack, and they want to
+ keep helping. I know it's unorthodox but I have to side with Mike and Dave on this one. Respectfully
+ command, if we do not neutralize this so-called Fourth Reich, we'll have an enemy much worse than
+ NanoTrasen to deal with. Curiously, NanoTrasen refuses to officially support helping to remove this
+ threat. Possible collaberation?"}
+
+/obj/item/weapon/paper/listneningpost/year2559/july
+ name = "\improper July 2559 Report"
+ info = {"USDF ships have been spotted in the area. Admiral Glenn Pink is on board. This guy went MIA almost
+ ten years ago, and now he's back? Why? Apparently he's got some kind of connection with V.O.R.E.'s
+ captain Ace. Sounds like they're gearing up to go kick some Nazi ass. It's like a bad action movie
+ plot. I don't know who this Admiral Pink is, but I guess Ace has at least a couple friends in high
+ places."}
+
+/obj/item/weapon/paper/listneningpost/year2559/august
+ name = "\improper August 2559 Report"
+ info = {"So, the reason Admiral Pink showed up in the last report was because these Space Nazis hijacked
+ one of his vessels; the USDF Jormungandr or something. Well, the crazy bastards took it back.
+ We overheard radio transmissions about some kind of huge mech, bigger than anything we've ever seen
+ in regard to exosuits. Tore up the crew bad. Killed a few, wounded all of them, but after-action
+ report says someone got close and slapped C4 on its leg while its anti-tank cannon was firing.
+ They managed to even capture another one and bring it home. Recommend command try to figure out
+ what this mech is, and if we can steal it. Furthermore, Dr. Kisuke Gema was KIA. His mechanical
+ arm was destroyed, and with it, all of his genetic information to get around his cloning disorder.
+ So he's finally out of our hair."}
+
+/obj/item/weapon/paper/listneningpost/year2559/september
+ name = "\improper September 2559 Report"
+ info = {"Of course it's not that simple. The nerd is back from the dead. Wonderful. I don't know how but
+ he's back, or they have a fake Kisuke Gema, or whatever bullshit. In other news, the station has
+ been slated for demolition. They're shipping a new Mark-3 Exodus-class station from Bay Shipyards
+ all the way from the NanoTrasen branch in Nyx. The demolition keeps getting delayed."}
+
+/obj/item/weapon/paper/listneningpost/year2559/october
+ name = "\improper October 2559 Report"
+ info = {"Station was demolished and operations were put on pause for a whole week. In other news, captain
+ Ace reportedly got a promotion to CentCom but something went wrong. The stronger loyalty implant
+ had a negative effect on him and almost killed him. He was quickly demoted back to Captain. This
+ could be useful information later. Recommend command investigate thoroughly."}
+
+/obj/item/weapon/paper/listneningpost/year2559/november
+ name = "\improper November 2559 Report"
+ info = {"A clown federation owned vessel called the Calypso was discovered in the Virgo system. It was a
+ ghost ship. Allegedly everyone on board perished due to a joke so funny that everyone laughed
+ themselves to madness, then death. NanoTrasen is trying to cover it up. No one knows why."}
+
+/obj/item/weapon/paper/listneningpost/year2559/december
+ name = "\improper December 2559 Report"
+ info = {"The V.O.R.E. discovered a new gateway location; a clown temple. We need to send someone to see
+ this. Reportedly it's full of tunnel clowns and these mutants called cluwnes. A clown researcher
+ came and tried to study the ruins and translate the glyphs, but I guess he discovered the joke.
+ I remember listening to him one week just absolutely losing it. Over the command channel, captain
+ Ace and the others talked about what they had to do, how he couldn't go back to the clown planet.
+ They never said it outright, but I think Ace put him out of his misery. All I know is the clown
+ researcher turned up dead. In other news, someone stole the station's entire cloning facility at
+ the end of the month right before Xmas. That shit was hilarious. We gotta find who this guy is
+ and see if he wants a job. Ask our contacts on station. Surely one of them knows who's behind
+ the heist."}
+
+/obj/item/weapon/paper/listneningpost/year2560/january
+ name = "\improper January 2560 Report"
+ info = {"A group of Akula pirates tried to kidnap Kisuke Gema. They succeded, but their leader died of
+ his injuries soon after. The other pirates defected. I wonder why?"}
+
+/obj/item/weapon/paper/listneningpost/year2560/february
+ name = "\improper February 2560 Report"
+ info = {"There were a few incidents regarding a redspace anomaly in the chapel but the effects have long
+ since subsided. Nothing of major interest otherwise."}
+
+/obj/item/weapon/paper/listneningpost/year2560/march
+ name = "\improper March 2560 Report"
+ info = {"Very quiet month. Nothing of interest to report. Perhaps the calm before the storm?"}
+
+/obj/item/weapon/paper/listneningpost/year2560/april
+ name = "\improper April 2560 Report"
+ info = {"A loud, painfully high pitched SSTV signal came across global comms. It seems to be a distress signal
+ of some kind. To what, I have no idea. Efforts to trace the signal's origin have fallen inconclusive."}
+
+/obj/item/weapon/paper/listneningpost/oddreport
+ name = "\improper Odd Report"
+ info = {"I wonder how much longer they will accept my empty reports. They will cancel the case soon without
+ results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic
+ solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent.
+ If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space
+ will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that
+ stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should
+ it ever rear it's ugly head again. -Donk Co. Operative #451"}
\ No newline at end of file
diff --git a/maps/tether/submaps/gateway/listeningpost.dmm b/maps/tether/submaps/gateway/listeningpost.dmm
new file mode 100644
index 0000000000..b5d285c63a
--- /dev/null
+++ b/maps/tether/submaps/gateway/listeningpost.dmm
@@ -0,0 +1,20192 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/space,
+/area)
+"b" = (
+/obj/effect/blocker,
+/turf/space,
+/area)
+"c" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/listeningpost)
+"d" = (
+/obj/machinery/power/smes/magical{
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
+ name = "power storage unit"
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"e" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"f" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"g" = (
+/turf/simulated/wall,
+/area/awaymission/listeningpost)
+"h" = (
+/turf/simulated/mineral,
+/area/mine/unexplored)
+"i" = (
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"j" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper/monitorkey,
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/obj/item/clothing/glasses/regular,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"k" = (
+/obj/structure/table/standard,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"l" = (
+/turf/simulated/mineral/floor/vacuum,
+/area/mine/explored)
+"m" = (
+/obj/machinery/computer/message_monitor{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"n" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/mob/living/simple_mob/humanoid/merc{
+ desc = "A weary looking syndicate operative.";
+ faction = "syndicate"
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"o" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper{
+ info = "Nothing of interest to report.";
+ name = "november report"
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"p" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"q" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/syndicate,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/head/helmet/space/syndicate,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"r" = (
+/obj/machinery/door/airlock,
+/obj/item/weapon/paper{
+ info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451";
+ name = "odd report"
+ },
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/weapon/silencer,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"s" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/mineral,
+/area/mine/unexplored)
+"t" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/mineral,
+/area/mine/unexplored)
+"u" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area)
+"v" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/brown,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"w" = (
+/obj/structure/table/standard,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"x" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"y" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/mineral,
+/area/mine/unexplored)
+"z" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"A" = (
+/obj/structure/closet,
+/obj/item/clothing/gloves/boxing,
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"B" = (
+/obj/structure/filingcabinet,
+/obj/item/weapon/paper{
+ info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it.";
+ name = "april report"
+ },
+/obj/item/weapon/paper{
+ info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment.";
+ name = "may report"
+ },
+/obj/item/weapon/paper{
+ info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it.";
+ name = "june report"
+ },
+/obj/item/weapon/paper{
+ info = "Nothing of interest to report.";
+ name = "july report"
+ },
+/obj/item/weapon/paper{
+ info = "Nothing of interest to report.";
+ name = "august report"
+ },
+/obj/item/weapon/paper{
+ info = "Nothing of interest to report.";
+ name = "september report"
+ },
+/obj/item/weapon/paper{
+ info = "Nothing of interest to report.";
+ name = "october report"
+ },
+/obj/item/weapon/paper{
+ info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160";
+ name = "receipt"
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"C" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper{
+ info = "
Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us.";
+ name = "mission briefing"
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"D" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"E" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/awaymission/listeningpost)
+"F" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/mineral,
+/area/mine/unexplored)
+"G" = (
+/obj/machinery/door/airlock{
+ name = "Toilet"
+ },
+/turf/simulated/floor,
+/area/awaymission/listeningpost)
+"H" = (
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/listeningpost)
+"I" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/listeningpost)
+"J" = (
+/obj/structure/toilet{
+ icon_state = "toilet00";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/listeningpost)
+"K" = (
+/turf/simulated/mineral/floor,
+/area/mine/unexplored)
+"L" = (
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"M" = (
+/turf/simulated/mineral/floor,
+/area/mine/explored)
+"N" = (
+/obj/machinery/gateway{
+ icon_state = "off";
+ dir = 9
+ },
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"O" = (
+/obj/machinery/gateway{
+ icon_state = "off";
+ dir = 1
+ },
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"P" = (
+/obj/machinery/gateway{
+ icon_state = "off";
+ dir = 5
+ },
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"Q" = (
+/obj/machinery/gateway{
+ icon_state = "off";
+ dir = 8
+ },
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"R" = (
+/obj/machinery/gateway/centeraway,
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"S" = (
+/obj/machinery/gateway{
+ icon_state = "off";
+ dir = 4
+ },
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"T" = (
+/obj/machinery/gateway{
+ icon_state = "off";
+ dir = 10
+ },
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"U" = (
+/obj/machinery/gateway,
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+"V" = (
+/obj/machinery/gateway{
+ icon_state = "off";
+ dir = 6
+ },
+/turf/simulated/floor/greengrid,
+/area/mine/explored)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(36,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(37,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(38,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+l
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(39,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+l
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(40,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(41,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(42,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(43,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(44,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(45,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(46,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(47,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(48,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(49,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+l
+l
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(50,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(51,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+K
+K
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(52,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+K
+L
+M
+h
+h
+h
+h
+M
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(53,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+K
+L
+L
+L
+h
+L
+M
+M
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(54,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+K
+L
+L
+N
+Q
+T
+L
+L
+K
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(55,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+L
+L
+O
+R
+U
+L
+L
+K
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(56,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+M
+L
+P
+S
+V
+L
+L
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(57,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+M
+L
+L
+L
+L
+L
+M
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(58,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+M
+M
+L
+M
+M
+M
+M
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(59,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+K
+K
+K
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(60,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(61,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(62,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+a
+a
+h
+h
+h
+h
+a
+a
+a
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(63,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+l
+l
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(64,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(65,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(66,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(67,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(68,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(69,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+l
+l
+l
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(70,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+l
+l
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(71,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(72,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(73,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(74,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+a
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(75,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+a
+l
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(76,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+l
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(77,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(78,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(79,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(80,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+c
+c
+c
+c
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(81,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+c
+v
+i
+A
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(82,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+c
+c
+c
+h
+c
+w
+i
+B
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(83,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+c
+c
+m
+c
+c
+c
+g
+f
+g
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(84,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+c
+j
+n
+p
+i
+r
+i
+i
+C
+c
+c
+c
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(85,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+c
+c
+c
+k
+o
+k
+i
+g
+i
+i
+i
+G
+H
+H
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(86,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+c
+i
+f
+i
+i
+i
+i
+g
+i
+i
+D
+g
+I
+J
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(87,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+c
+d
+g
+i
+i
+i
+q
+g
+x
+z
+E
+c
+c
+c
+c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(88,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+c
+c
+c
+e
+e
+c
+c
+c
+c
+c
+E
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(89,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+c
+i
+i
+c
+h
+h
+h
+h
+t
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(90,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+c
+i
+i
+c
+h
+s
+y
+y
+F
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(91,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+c
+e
+e
+c
+h
+t
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(92,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+a
+a
+a
+a
+h
+t
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(93,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+a
+a
+a
+a
+a
+u
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(94,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(95,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(96,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+a
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(97,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+a
+a
+a
+h
+h
+h
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(98,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+h
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(99,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(100,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(101,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(102,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(103,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(104,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(105,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(106,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(107,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(108,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(109,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(110,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(111,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(112,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(113,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(114,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(115,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(116,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(117,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(118,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(119,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(120,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(121,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(122,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(123,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(124,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(125,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(126,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(127,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(128,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(129,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(130,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(131,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(132,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(133,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(134,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(135,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(136,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(137,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(138,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(139,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(140,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/tether/submaps/gateway/snow_outpost.dm b/maps/tether/submaps/gateway/snow_outpost.dm
new file mode 100644
index 0000000000..de9d70dfb1
--- /dev/null
+++ b/maps/tether/submaps/gateway/snow_outpost.dm
@@ -0,0 +1,41 @@
+// -- Areas -- //
+
+/area/awaymission/snow_outpost
+ icon_state = "blank"
+ requires_power = 0
+ base_turf = /turf/snow/snow2
+ ambience = list('sound/music/main.ogg', 'sound/ambience/maintenance/maintenance4.ogg', 'sound/ambience/sif/sif1.ogg', 'sound/ambience/ruins/ruins1.ogg')
+ base_turf = /turf/simulated/floor/snow/snow2
+
+/area/awaymission/snow_outpost/outside
+ icon_state = "away1"
+ requires_power = 1
+ always_unpowered = 1
+ dynamic_lighting = 1
+ power_light = 0
+ power_equip = 0
+ power_environ = 0
+ mobcountmax = 100
+ floracountmax = 7000
+ valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/animal/wolf, /mob/living/simple_mob/animal/sif/shantak,
+ /mob/living/simple_mob/animal/sif/kururak, /mob/living/simple_mob/animal/sif/frostfly)
+ valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
+ /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
+ /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush,
+ /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush,
+ /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass)
+
+/area/awaymission/snow_outpost/restricted // No mob spawns!
+ icon_state = "red"
+ mobcountmax = 1 // Hacky fix.
+ floracountmax = 100
+ valid_mobs = list(/obj/structure/flora/tree/pine) // Hacky fix.
+ valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
+ /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
+ /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush,
+ /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush,
+ /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass)
+
+/area/awaymission/snow_outpost/outpost
+ icon_state = "away"
+ ambience = list('sound/ambience/chapel/chapel1.ogg', 'sound/ambience/ruins/ruins5.ogg', 'sound/ambience/ruins/ruins1.ogg') // Rykka was here. <3
diff --git a/maps/tether/submaps/gateway/snow_outpost.dmm b/maps/tether/submaps/gateway/snow_outpost.dmm
new file mode 100644
index 0000000000..c3d57c4ece
--- /dev/null
+++ b/maps/tether/submaps/gateway/snow_outpost.dmm
@@ -0,0 +1,22581 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/simulated/wall/snowbrick,
+/area/awaymission/snow_outpost/restricted)
+"ab" = (
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ac" = (
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"ad" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"ae" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"af" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"ag" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"ah" = (
+/obj/machinery/gateway/centeraway,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"ai" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"aj" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"ak" = (
+/obj/machinery/gateway,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"al" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/awaymission/snow_outpost/restricted)
+"an" = (
+/obj/machinery/door/airlock/alien/public,
+/turf/simulated/wall/snowbrick,
+/area/awaymission/snow_outpost/restricted)
+"ao" = (
+/obj/machinery/crystal/ice,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ap" = (
+/turf/simulated/floor/outdoors/ice,
+/area/awaymission/snow_outpost/outside)
+"aq" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/dungeon,
+/area/awaymission/snow_outpost/outside)
+"ar" = (
+/turf/simulated/floor/water/deep,
+/area/awaymission/snow_outpost/outside)
+"as" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/snow_outpost/outpost)
+"at" = (
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"au" = (
+/obj/machinery/door/airlock/silver,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"av" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"aw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ icon_state = "map";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"ax" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "sec_fore_pump"
+ },
+/obj/structure/grille,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"ay" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"az" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,
+/obj/structure/grille,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"aC" = (
+/obj/structure/railing,
+/turf/simulated/floor/dungeon,
+/area/awaymission/snow_outpost/outside)
+"aD" = (
+/obj/machinery/crystal/ice,
+/turf/simulated/floor/outdoors/ice,
+/area/awaymission/snow_outpost/outside)
+"aE" = (
+/turf/simulated/wall,
+/area/awaymission/snow_outpost/outpost)
+"aF" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southleft,
+/obj/machinery/door/window/northleft,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ icon_state = "intact";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aH" = (
+/obj/machinery/suit_cycler,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aI" = (
+/obj/machinery/suit_cycler/mining,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aJ" = (
+/obj/machinery/suit_cycler/medical,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aK" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/awaymission/snow_outpost/outpost)
+"aL" = (
+/obj/machinery/suit_cycler/engineering,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aM" = (
+/obj/machinery/suit_cycler/security,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aN" = (
+/obj/machinery/suit_cycler/syndicate,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aO" = (
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"aP" = (
+/obj/machinery/replicator,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aQ" = (
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/awaymission/snow_outpost/outpost)
+"aR" = (
+/obj/structure/AIcore,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/awaymission/snow_outpost/outpost)
+"aS" = (
+/obj/machinery/porta_turret/stationary/syndie,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aT" = (
+/mob/living/simple_mob/mechanical/viscerator/mercenary,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"aU" = (
+/obj/machinery/dna_scannernew,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aV" = (
+/obj/machinery/clonepod/transhuman/full,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aW" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aX" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/mob/living/simple_mob/humanoid/merc/ranged/ionrifle,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aY" = (
+/obj/machinery/implantchair,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"aZ" = (
+/obj/machinery/sleep_console,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"ba" = (
+/obj/machinery/bodyscanner,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bb" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bc" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bd" = (
+/obj/machinery/telecomms/relay,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"be" = (
+/obj/machinery/telecomms/broadcaster,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bf" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bg" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bh" = (
+/obj/structure/ore_box,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bi" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ icon_state = "intact";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bj" = (
+/obj/machinery/porta_turret/stationary/syndie,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"bk" = (
+/obj/machinery/power/breakerbox/activated,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bl" = (
+/obj/machinery/power/smes/magical,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bm" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bn" = (
+/obj/machinery/door/airlock/silver,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bp" = (
+/obj/machinery/door/airlock/highsecurity,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bq" = (
+/obj/machinery/door/airlock/silver,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"br" = (
+/obj/structure/table/standard,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southright,
+/obj/machinery/door/window/northleft,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bs" = (
+/obj/random/landmine,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"bt" = (
+/turf/simulated/wall/solidrock{
+ block_tele = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"bu" = (
+/turf/simulated/floor/outdoors/ice{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"bv" = (
+/obj/machinery/crystal/ice,
+/turf/simulated/floor/outdoors/ice{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"bw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/wall/r_wall,
+/area/awaymission/snow_outpost/outpost)
+"bx" = (
+/obj/machinery/door/airlock/silver,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outpost)
+"by" = (
+/obj/machinery/atmospherics/unary/vent_pump,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ icon_state = "intact";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ icon_state = "map";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bD" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ use_power = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ being_shocked = 1;
+ locked = 1;
+ name = "Outpost Security Airlock";
+ use_power = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bF" = (
+/obj/machinery/door/airlock/silver,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bJ" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bK" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bL" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 1;
+ pressure_checks_default = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bM" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bN" = (
+/obj/machinery/door/airlock/silver,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bP" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ icon_state = "map_scrubber_off";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bR" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southright,
+/obj/machinery/door/window/northleft,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bS" = (
+/obj/tether_away_spawner/underdark_hard,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bT" = (
+/mob/living/simple_mob/humanoid/merc/ranged/laser,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bU" = (
+/mob/living/simple_mob/humanoid/merc/ranged/space,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/awaymission/snow_outpost/outpost)
+"bV" = (
+/mob/living/simple_mob/humanoid/merc/ranged,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bW" = (
+/mob/living/simple_mob/humanoid/merc/melee,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bX" = (
+/mob/living/simple_mob/humanoid/merc/melee/sword/space,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"bY" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"bZ" = (
+/obj/random/firstaid,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ca" = (
+/obj/random/landmine,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cb" = (
+/obj/random/ammo,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cc" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cd" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"ce" = (
+/turf/simulated/wall/sandstone,
+/area/awaymission/snow_outpost/outside)
+"cf" = (
+/obj/item/weapon/ore/diamond,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cg" = (
+/obj/structure/boulder,
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"ch" = (
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/awaymission/snow_outpost/outside)
+"ci" = (
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"cj" = (
+/obj/item/weapon/ore,
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"ck" = (
+/obj/structure/bed/alien,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/awaymission/snow_outpost/outside)
+"cl" = (
+/obj/structure/cult/talisman,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/awaymission/snow_outpost/outside)
+"cm" = (
+/obj/machinery/artifact,
+/obj/structure/anomaly_container,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/awaymission/snow_outpost/outside)
+"cn" = (
+/obj/structure/simple_door/sandstone,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/awaymission/snow_outpost/outside)
+"co" = (
+/obj/structure/loot_pile/surface/alien,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/awaymission/snow_outpost/outside)
+"cp" = (
+/mob/living/simple_mob/animal/passive/tindalos,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/awaymission/snow_outpost/outside)
+"cq" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"cr" = (
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"cs" = (
+/obj/item/weapon/ore,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ct" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cu" = (
+/obj/structure/anomaly_container,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"cv" = (
+/turf/simulated/wall,
+/area/awaymission/snow_outpost/outside)
+"cw" = (
+/obj/item/frame/apc,
+/obj/item/weapon/module/power_control,
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"cx" = (
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/random/powercell,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cy" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/excavation,
+/obj/item/device/measuring_tape,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cz" = (
+/obj/machinery/power/port_gen/pacman/super,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"cA" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"cB" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cC" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cD" = (
+/obj/structure/table/rack,
+/obj/item/weapon/pickaxe,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cE" = (
+/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cF" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"cG" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cH" = (
+/obj/structure/table/rack,
+/obj/item/weapon/shovel,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cI" = (
+/obj/structure/boulder,
+/obj/effect/decal/mecha_wreckage/ripley,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cJ" = (
+/obj/structure/boulder,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cK" = (
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/plating/external,
+/area/awaymission/snow_outpost/outside)
+"cL" = (
+/obj/structure/table/steel,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/storage/box/samplebags,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cM" = (
+/obj/structure/table/steel,
+/obj/item/stack/flag/yellow,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cN" = (
+/obj/random/toolbox,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cO" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cP" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cQ" = (
+/obj/structure/ore_box,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"cR" = (
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/awaymission/snow_outpost/outside)
+"cS" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/awaymission/snow_outpost/outside)
+"cT" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"cU" = (
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"cV" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"cW" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"cX" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"cY" = (
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"cZ" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"da" = (
+/obj/structure/old_roboprinter,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"db" = (
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"dc" = (
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"dd" = (
+/obj/structure/table/standard,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"de" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"df" = (
+/obj/structure/window/reinforced/full,
+/turf/simulated/wall,
+/area/awaymission/snow_outpost/outside)
+"dg" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"dh" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"di" = (
+/obj/structure/table/standard,
+/obj/item/weapon/cell/high,
+/obj/item/weapon/cell/high,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dj" = (
+/obj/structure/loot_pile/maint/trash,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dk" = (
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dl" = (
+/obj/machinery/power/apc{
+ operating = 0;
+ pixel_x = 31
+ },
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dm" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"dn" = (
+/obj/structure/closet/crate/trashcart,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"do" = (
+/obj/structure/closet/crate/engineering,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dp" = (
+/obj/machinery/light,
+/obj/machinery/space_heater,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dq" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dr" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"ds" = (
+/obj/structure/table/rack,
+/obj/item/weapon/pickaxe/drill,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"dt" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"du" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"dv" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"dw" = (
+/obj/structure/ore_box,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/awaymission/snow_outpost/outside)
+"dx" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"dy" = (
+/obj/item/weapon/stool,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"dz" = (
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"dA" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/awaymission/snow_outpost/outside)
+"dB" = (
+/obj/structure/table/standard,
+/obj/item/pizzabox,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"dC" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dD" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"dE" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"dF" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/awaymission/snow_outpost/restricted)
+"dG" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"dH" = (
+/obj/structure/flora/tree/sif,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"dI" = (
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/restricted)
+"dJ" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/restricted)
+"dK" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/restricted)
+"dL" = (
+/obj/structure/flora/tree/sif,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/restricted)
+"dM" = (
+/mob/living/simple_mob/humanoid/merc/ranged/smg/poi,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/restricted)
+"dN" = (
+/turf/simulated/floor/snow/snow2,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark6";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"dO" = (
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark0";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"dP" = (
+/turf/simulated/floor/snow/snow2,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark10";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"dQ" = (
+/mob/living/simple_mob/humanoid/merc/ranged/laser/poi,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/restricted)
+"dR" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark0";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"dS" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/restricted)
+"dT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/suit/space,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"dU" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"dV" = (
+/obj/machinery/door/airlock/external{
+ density = 1;
+ frequency = 1331;
+ id_tag = "merc_shuttle_outer";
+ name = "Ship External Access";
+ req_access = list(150)
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"dW" = (
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"dX" = (
+/obj/machinery/gibber,
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"dY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"dZ" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"ea" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eb" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark5";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"ec" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"ed" = (
+/obj/structure/table/steel,
+/obj/item/weapon/gun/projectile/automatic/wt550,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"ee" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"ef" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eg" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eh" = (
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"ei" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"ej" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"ek" = (
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"el" = (
+/obj/machinery/organ_printer/flesh,
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"em" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark9";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"en" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark6";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"eo" = (
+/mob/living/simple_mob/mechanical/viscerator,
+/mob/living/simple_mob/mechanical/viscerator,
+/mob/living/simple_mob/mechanical/viscerator,
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"ep" = (
+/obj/structure/table/steel,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"eq" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"er" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"es" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"et" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eu" = (
+/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"ev" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"ew" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor/full,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"ex" = (
+/obj/structure/table/steel,
+/obj/item/weapon/grenade/smokebomb,
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"ey" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"ez" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eA" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eC" = (
+/obj/structure/table/standard,
+/obj/item/weapon/tank/anesthetic,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eD" = (
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eE" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eG" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/masks,
+/obj/effect/floor_decal/corner/green/border{
+ icon_state = "bordercolor";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eH" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eI" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eJ" = (
+/obj/machinery/door/airlock/security{
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eK" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/restricted)
+"eL" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark10";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"eM" = (
+/obj/machinery/computer/communications,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eN" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eP" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eQ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/material/knife,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eR" = (
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eS" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eT" = (
+/mob/living/simple_mob/humanoid/merc/ranged/smg/poi,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eU" = (
+/obj/structure/table/steel,
+/obj/random/toolbox,
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"eV" = (
+/obj/structure/table/steel,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"eW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snow_outpost/restricted)
+"eX" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eY" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"eZ" = (
+/mob/living/simple_mob/animal/giant_spider/ion,
+/turf/simulated/floor/outdoors/ice{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"fa" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fb" = (
+/obj/item/weapon/stool,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fc" = (
+/obj/structure/table/steel,
+/obj/random/projectile,
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"fd" = (
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"fe" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snow_outpost/restricted)
+"ff" = (
+/obj/machinery/door/airlock/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fg" = (
+/obj/effect/floor_decal/corner/grey,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fh" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fi" = (
+/obj/structure/table/steel,
+/obj/item/pizzabox,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fj" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fk" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fl" = (
+/obj/machinery/door/airlock/glass,
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fm" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snow_outpost/restricted)
+"fo" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "BSD APC";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"fp" = (
+/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"fq" = (
+/obj/machinery/computer/area_atmos,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/mob/living/simple_mob/humanoid/merc/ranged/laser/poi,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"ft" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fu" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper{
+ info = "We need to take a short stop. The engine's are in need of minor repairs due to turbulence, should be a week's time. We've got reserve food supplies but pleanty of locale fauna to subsist on too if need be. PCRC is keeping most of there assets near New Reykjavik and locale authorities are more mindful then most to travel in this kind of weather. Our outfit should be at the rendezvous point in less then ten days assuming the upper ecehelon hasn't dropped ties with us yet.";
+ name = "Operation Progress/M-53"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fv" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fw" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fx" = (
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"fy" = (
+/obj/machinery/portable_atmospherics/canister/empty/oxygen,
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"fz" = (
+/obj/machinery/atmospherics/pipe/tank/oxygen,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/awaymission/snow_outpost/restricted)
+"fA" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fB" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fC" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"fD" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fE" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fF" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fG" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snow_outpost/restricted)
+"fH" = (
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snow_outpost/restricted)
+"fI" = (
+/mob/living/simple_mob/mechanical/viscerator,
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"fJ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/gun/projectile/pistol,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"fK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fL" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/structure/bed,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fM" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snow_outpost/restricted)
+"fN" = (
+/mob/living/simple_mob/mechanical/viscerator,
+/mob/living/simple_mob/mechanical/viscerator,
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"fO" = (
+/obj/structure/table/steel,
+/obj/random/energy,
+/turf/simulated/floor/tiled/steel_grid,
+/area/awaymission/snow_outpost/restricted)
+"fP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fQ" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snow_outpost/restricted)
+"fR" = (
+/obj/machinery/light,
+/obj/structure/table/rack,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/suit/space,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fS" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fT" = (
+/obj/structure/table/woodentable,
+/obj/random/projectile,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fU" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"fV" = (
+/obj/tether_away_spawner/aerostat_inside,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"fW" = (
+/obj/item/weapon/ore/gold,
+/obj/tether_away_spawner/aerostat_inside,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"fX" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"fY" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"fZ" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ga" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gb" = (
+/obj/item/weapon/shovel,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gc" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gd" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ge" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gf" = (
+/obj/item/ammo_casing/a45,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gg" = (
+/obj/item/ammo_casing/a45,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gh" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gi" = (
+/obj/structure/flora/tree/sif,
+/turf/simulated/floor/outdoors/ice,
+/area/awaymission/snow_outpost/outside)
+"gj" = (
+/obj/item/ammo_casing/a45,
+/obj/random/landmine,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gk" = (
+/obj/random/landmine,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gl" = (
+/obj/effect/spider/stickyweb,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gm" = (
+/obj/item/ammo_casing/a45,
+/obj/item/ammo_casing/a45,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gn" = (
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"go" = (
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gp" = (
+/obj/effect/spider/stickyweb,
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"gq" = (
+/obj/item/clothing/accessory/storage/webbing,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gr" = (
+/mob/living/simple_mob/animal/giant_spider,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gs" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gt" = (
+/obj/random/mob/spider,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gu" = (
+/mob/living/simple_mob/animal/giant_spider/lurker,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gv" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gw" = (
+/mob/living/simple_mob/animal/giant_spider/webslinger,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gx" = (
+/obj/effect/decal/cleanable/cobweb2,
+/mob/living/simple_mob/animal/giant_spider/lurker,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gy" = (
+/obj/random/landmine,
+/turf/simulated/floor/outdoors/ice,
+/area/awaymission/snow_outpost/outside)
+"gz" = (
+/obj/random/mob/spider/mutant,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gA" = (
+/mob/living/simple_mob/animal/giant_spider/lurker,
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"gB" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gC" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_3"
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gD" = (
+/obj/structure/closet/crate,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/storage/toolbox,
+/obj/random/toolbox,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gE" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gF" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gG" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gH" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/glass/bottle/stoxin,
+/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,
+/obj/item/weapon/reagent_containers/pill/antitox,
+/obj/item/weapon/reagent_containers/pill/antitox,
+/obj/item/weapon/reagent_containers/pill/antitox,
+/obj/item/weapon/reagent_containers/pill/paracetamol,
+/obj/random/firstaid,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gJ" = (
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/energy,
+/obj/item/weapon/material/star,
+/obj/item/weapon/material/star,
+/obj/item/weapon/material/star,
+/obj/item/weapon/material/star,
+/obj/item/weapon/material/star,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gK" = (
+/obj/effect/spider/stickyweb,
+/mob/living/simple_mob/animal/giant_spider/lurker,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"gL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gN" = (
+/obj/machinery/computer/communications,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gO" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"gP" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gQ" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gR" = (
+/obj/structure/flora/tree/dead,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gS" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gT" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gU" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gV" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"gW" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/turf/simulated/floor/outdoors/ice,
+/area/awaymission/snow_outpost/outside)
+"gX" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/outdoors/ice,
+/area/awaymission/snow_outpost/outside)
+"gY" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"gZ" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"ha" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/lipstick/random,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hb" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hc" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/pill/happy{
+ name = "pill"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hd" = (
+/obj/structure/curtain/black,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"he" = (
+/obj/random/trash,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hf" = (
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hg" = (
+/obj/effect/decal/remains/mouse,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hh" = (
+/obj/structure/closet/cabinet,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hi" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/pill/methylphenidate{
+ name = "pill"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hj" = (
+/obj/structure/bed/chair/comfy/beige{
+ icon_state = "armchair_preview";
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hk" = (
+/obj/item/weapon/reagent_containers/pill/citalopram{
+ name = "pill"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hl" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hm" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/contraband/poster,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hn" = (
+/obj/structure/bed/chair/comfy/beige,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"ho" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp,
+/obj/item/weapon/reagent_containers/syringe/drugs,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hp" = (
+/obj/structure/bed/chair/comfy/beige,
+/obj/item/weapon/reagent_containers/pill/citalopram{
+ name = "pill"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hq" = (
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hr" = (
+/obj/item/weapon/reagent_containers/pill/citalopram{
+ name = "pill"
+ },
+/obj/item/weapon/reagent_containers/pill/citalopram{
+ name = "pill"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hs" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/pill_bottle/happy,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"ht" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/splint,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"hu" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/pill/citalopram,
+/obj/item/weapon/reagent_containers/pill/citalopram,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"hv" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/pill/tramadol,
+/obj/item/weapon/reagent_containers/pill/tramadol,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"hw" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/accessory/jacket,
+/obj/item/weapon/material/butterfly/switchblade,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hx" = (
+/obj/item/weapon/reagent_containers/pill/zoom{
+ name = "pill"
+ },
+/obj/random/trash,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hy" = (
+/obj/item/weapon/reagent_containers/pill/zoom{
+ name = "pill"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hz" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hA" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/scalpel,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"hB" = (
+/obj/item/wheelchair,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"hC" = (
+/obj/structure/table/standard,
+/obj/random/firstaid,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hD" = (
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"hE" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"hF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/pill/zoom,
+/obj/item/weapon/reagent_containers/pill/zoom,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hG" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/pill/tramadol{
+ name = "pill"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hH" = (
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hI" = (
+/obj/structure/girder,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hJ" = (
+/obj/item/weapon/material/shard,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"hK" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hL" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/syringe/drugs,
+/turf/simulated/floor/carpet,
+/area/awaymission/snow_outpost/outside)
+"hM" = (
+/obj/effect/spider/stickyweb,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hN" = (
+/obj/effect/spider/spiderling/frost,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hO" = (
+/obj/item/weapon/spacecash/c100,
+/obj/item/weapon/spacecash/c100,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hP" = (
+/obj/random/mob/spider/mutant,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hQ" = (
+/obj/item/weapon/spacecash/c100,
+/obj/item/weapon/spacecash/c100,
+/obj/item/weapon/spacecash/c100,
+/obj/effect/decal/remains,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hR" = (
+/obj/random/mob/spider,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hS" = (
+/obj/item/weapon/grenade/spawnergrenade/spider,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hT" = (
+/obj/random/toolbox,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hU" = (
+/obj/effect/decal/mecha_wreckage/ripley,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hV" = (
+/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hW" = (
+/mob/living/simple_mob/animal/giant_spider/frost,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hX" = (
+/obj/effect/spider/stickyweb,
+/obj/effect/spider/stickyweb,
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/snow_outpost/outside)
+"hY" = (
+/mob/living/simple_mob/animal/giant_spider/frost,
+/turf/simulated/floor/outdoors/ice{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"hZ" = (
+/mob/living/simple_mob/animal/giant_spider/frost,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ia" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"ib" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"ic" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"id" = (
+/turf/simulated/floor/water,
+/area/awaymission/snow_outpost/outside)
+"ie" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"if" = (
+/turf/simulated/shuttle/wall,
+/area/awaymission/snow_outpost/outside)
+"ig" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/plating,
+/area/awaymission/snow_outpost/outside)
+"ih" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"ii" = (
+/obj/structure/bed/chair{
+ icon_state = "chair_preview";
+ dir = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/water,
+/area/awaymission/snow_outpost/outside)
+"ij" = (
+/obj/structure/bed/chair{
+ icon_state = "chair_preview";
+ dir = 1
+ },
+/obj/effect/decal/remains/posi,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/vending/wallmed1{
+ layer = 3.3;
+ name = "Emergency NanoMed";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/under/mbill,
+/obj/item/clothing/head/soft/mbill,
+/turf/simulated/floor/water,
+/area/awaymission/snow_outpost/outside)
+"ik" = (
+/obj/structure/bed/chair{
+ icon_state = "chair_preview";
+ dir = 1
+ },
+/obj/structure/closet/walllocker/emerglocker/east,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/obj/structure/closet/crate/hydroponics{
+ desc = "All you need to destroy that pesky planet.";
+ name = "exotic seeds crate";
+ starts_with = list(/obj/item/seeds/random = 6, /obj/item/seeds/replicapod = 2, /obj/item/seeds/ambrosiavulgarisseed = 2, /obj/item/seeds/kudzuseed, /obj/item/seeds/libertymycelium, /obj/item/seeds/reishimycelium)
+ },
+/turf/simulated/floor/water,
+/area/awaymission/snow_outpost/outside)
+"il" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/simulated/shuttle/wall,
+/area/awaymission/snow_outpost/outside)
+"im" = (
+/obj/structure/door_assembly/door_assembly_ext{
+ anchored = 1
+ },
+/turf/simulated/floor/water,
+/area/awaymission/snow_outpost/outside)
+"in" = (
+/turf/unsimulated/mineral,
+/area/awaymission/snow_outpost/outside)
+"io" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/outdoors/dirt,
+/area/awaymission/snow_outpost/outside)
+"ip" = (
+/obj/effect/spider/stickyweb,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iq" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"ir" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"is" = (
+/turf/simulated/mineral,
+/area/awaymission/snow_outpost/outside)
+"it" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iu" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ icon_state = "propulsion";
+ dir = 8
+ },
+/turf/simulated/shuttle/wall,
+/area/awaymission/snow_outpost/outside)
+"iv" = (
+/obj/effect/spider/eggcluster/small/frost,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iw" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Hatch";
+ welded = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/awaymission/snow_outpost/outside)
+"ix" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 28
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -26
+ },
+/turf/simulated/shuttle/floor,
+/area/awaymission/snow_outpost/outside)
+"iy" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ name = "Emergency NanoMed";
+ pixel_y = 28
+ },
+/obj/machinery/light,
+/obj/item/weapon/weldingtool/largetank,
+/turf/simulated/shuttle/floor,
+/area/awaymission/snow_outpost/outside)
+"iz" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/structure/bed/chair{
+ icon_state = "chair_preview";
+ dir = 8
+ },
+/obj/effect/decal/remains,
+/obj/effect/decal/cleanable/blood/splatter,
+/obj/item/ammo_casing/spent,
+/obj/item/clothing/under/suit_jacket/really_black,
+/obj/item/clothing/shoes/dress,
+/obj/item/clothing/glasses/sunglasses,
+/obj/random/multiple/gun/projectile/handgun,
+/turf/simulated/shuttle/floor,
+/area/awaymission/snow_outpost/outside)
+"iA" = (
+/mob/living/simple_mob/animal/giant_spider/frost/sif{
+ ai_holder_type = /datum/ai_holder/simple_mob/guard/give_chase
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iB" = (
+/mob/living/simple_mob/animal/giant_spider/carrier{
+ ai_holder_type = /datum/ai_holder/simple_mob/guard/give_chase
+ },
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iC" = (
+/obj/effect/spider/stickyweb,
+/obj/effect/spider/stickyweb,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iD" = (
+/obj/structure/closet/crate/mimic/dangerous,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"iE" = (
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/restricted)
+"iF" = (
+/obj/structure/closet/crate/mimic/guaranteed,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/outside)
+"iG" = (
+/obj/structure/closet/grave,
+/obj/structure/gravemarker,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/restricted)
+"iH" = (
+/obj/structure/closet/crate/mimic/dangerous,
+/turf/simulated/floor,
+/area/awaymission/snow_outpost/outside)
+"iI" = (
+/obj/structure/closet/crate/mimic/guaranteed,
+/turf/simulated/floor/tiled,
+/area/awaymission/snow_outpost/outside)
+"iJ" = (
+/obj/structure/closet/crate/mimic/guaranteed,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iK" = (
+/turf/simulated/floor/outdoors/ice,
+/area/awaymission/snow_outpost/restricted)
+"iL" = (
+/obj/vehicle/bike,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iM" = (
+/obj/effect/decal/remains/deer,
+/turf/simulated/floor/snow/snow2,
+/area/awaymission/snow_outpost/outside)
+"iN" = (
+/turf/simulated/floor/water/deep,
+/area/awaymission/snow_outpost/restricted)
+"iO" = (
+/obj/mecha/combat/phazon/equipped,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"iP" = (
+/obj/machinery/atmospherics/unary/vent_pump,
+/obj/item/weapon/cell/infinite,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"iQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/item/weapon/cell/infinite,
+/obj/item/weapon/cat_box,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"iR" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 1;
+ pressure_checks_default = 1;
+ use_power = 1
+ },
+/obj/item/stack/material/phoron,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snow_outpost/outpost)
+"iS" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"iT" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/item/toy/plushie/spider,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snow_outpost/restricted)
+"iU" = (
+/turf/simulated/floor/snow/snow2,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark5";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"iV" = (
+/turf/simulated/floor/snow/snow2,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark9";
+ name = "Unknown Shuttle"
+ },
+/area/awaymission/snow_outpost/restricted)
+"iW" = (
+/obj/effect/decal/remains/deer,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/restricted)
+"iX" = (
+/obj/structure/bonfire/permanent,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/restricted)
+"iY" = (
+/obj/structure/closet/crate/mimic/guaranteed,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/restricted)
+"iZ" = (
+/obj/structure/dogbed,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/restricted)
+"ja" = (
+/obj/structure/closet/crate/mimic/dangerous,
+/turf/simulated/floor/outdoors/dirt{
+ outdoors = 0
+ },
+/area/awaymission/snow_outpost/restricted)
+"jb" = (
+/obj/structure/flora/tree/sif,
+/turf/unsimulated/mineral,
+/area/awaymission/snow_outpost/outside)
+"je" = (
+/turf/unsimulated/mineral,
+/area/awaymission/snow_outpost/restricted)
+
+(1,1,1) = {"
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+"}
+(2,1,1) = {"
+in
+hZ
+ia
+ia
+ic
+id
+id
+id
+id
+ib
+ia
+ih
+ia
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(3,1,1) = {"
+in
+ab
+ia
+ic
+id
+id
+ar
+ar
+ar
+id
+id
+ia
+ia
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+hX
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(4,1,1) = {"
+in
+ab
+ib
+id
+if
+if
+if
+if
+il
+ar
+ar
+id
+io
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+hO
+hQ
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+hX
+hX
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(5,1,1) = {"
+in
+ab
+ia
+id
+ig
+ii
+ij
+ik
+im
+ar
+ar
+id
+ia
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+hO
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+hM
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+da
+da
+da
+da
+ab
+ab
+ab
+ab
+ab
+ab
+dz
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(6,1,1) = {"
+in
+ab
+ia
+ie
+if
+if
+if
+if
+il
+ar
+id
+id
+io
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+hN
+cr
+cd
+cd
+cd
+hM
+hM
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(7,1,1) = {"
+in
+ab
+ia
+ia
+ih
+ia
+id
+id
+id
+id
+ia
+io
+ia
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+cd
+hM
+cr
+cr
+cd
+cd
+cr
+cr
+cr
+hP
+cr
+cr
+cr
+cr
+cr
+cr
+hN
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+fW
+fV
+fV
+fV
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(8,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cr
+cr
+hR
+cr
+cr
+cr
+cr
+cr
+cr
+hM
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+db
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(9,1,1) = {"
+in
+ab
+ab
+iq
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+hM
+cr
+cr
+cr
+cr
+hM
+hM
+cr
+cr
+cr
+cr
+cd
+cr
+cr
+hP
+cr
+hM
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+dc
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(10,1,1) = {"
+in
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cr
+hM
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ce
+ce
+ce
+ce
+ce
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(11,1,1) = {"
+in
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cQ
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ce
+ce
+ch
+ch
+ch
+ce
+ce
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(12,1,1) = {"
+in
+ab
+ab
+ge
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+hM
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+hM
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+dm
+ab
+ab
+ab
+cR
+dA
+cR
+cR
+cR
+ab
+ab
+cd
+cd
+cd
+ce
+ch
+ch
+cm
+ch
+ch
+ce
+cd
+cd
+cd
+cd
+cd
+cd
+cJ
+cN
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(13,1,1) = {"
+in
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+hM
+hN
+cr
+cr
+hT
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+hM
+cd
+cd
+cd
+cd
+cd
+cR
+cR
+cR
+cR
+cR
+cR
+cR
+cR
+cR
+cR
+cR
+cR
+dw
+cR
+cv
+dC
+cv
+cR
+ab
+ab
+cd
+cd
+cd
+ce
+ch
+ch
+ch
+ch
+ch
+ce
+cd
+cd
+cd
+cv
+cz
+cF
+cK
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(14,1,1) = {"
+in
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+cd
+cd
+hM
+cr
+cr
+cr
+hM
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+hM
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cR
+cv
+cv
+cv
+cv
+df
+df
+df
+df
+df
+cv
+cv
+cv
+cv
+cv
+dD
+cv
+cR
+ab
+ab
+cd
+cd
+cd
+ce
+ce
+ce
+cn
+ce
+ce
+ce
+cq
+cd
+cd
+cw
+cA
+ci
+ci
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(15,1,1) = {"
+in
+ab
+fY
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cS
+cv
+cT
+cU
+cU
+cU
+cU
+cU
+cU
+cU
+cT
+ds
+ds
+cv
+cv
+dC
+cv
+cR
+ab
+ab
+cd
+cd
+cd
+ce
+ch
+ch
+ch
+ch
+ch
+ce
+cr
+ab
+cs
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(16,1,1) = {"
+in
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+cd
+cd
+cd
+cd
+hM
+cr
+cr
+hM
+cd
+cd
+hU
+hV
+hM
+cd
+cd
+cd
+cd
+cr
+cr
+cr
+hP
+cd
+cd
+cd
+cd
+cR
+cv
+cU
+cU
+cU
+dg
+cU
+cU
+cU
+cU
+dg
+cU
+cU
+cU
+cU
+cU
+cv
+cR
+ab
+ab
+cd
+cd
+cd
+ce
+ch
+ch
+ch
+ch
+ch
+cn
+ch
+ab
+ab
+ab
+cB
+cB
+ct
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(17,1,1) = {"
+in
+dH
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+hM
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+hM
+cd
+cd
+cd
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cR
+cv
+cv
+cZ
+cv
+cv
+cv
+cZ
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+dC
+cv
+cR
+ab
+dE
+cd
+cd
+cd
+ce
+ch
+cl
+ci
+ch
+ch
+ce
+ch
+ab
+ab
+cx
+cC
+cG
+cL
+cO
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(18,1,1) = {"
+in
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+hN
+cr
+cr
+cr
+hR
+cr
+cr
+cr
+cr
+hM
+hW
+cd
+cd
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cR
+cv
+cV
+cU
+cV
+cv
+dh
+dk
+dk
+dn
+cv
+cT
+cU
+dx
+cU
+cU
+cv
+cR
+ab
+ab
+cd
+cd
+cd
+ce
+ci
+ci
+ci
+ch
+ch
+ce
+ch
+ab
+ab
+cy
+cD
+cH
+cM
+cP
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(19,1,1) = {"
+in
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+hP
+cr
+cr
+hM
+cd
+cr
+cr
+hM
+hM
+cd
+cd
+cd
+cd
+cd
+cR
+cv
+cW
+cU
+dd
+cv
+di
+dk
+dk
+do
+cv
+dt
+cU
+dy
+cW
+dy
+cv
+cR
+cd
+cd
+cd
+cd
+cd
+cg
+cj
+ci
+ch
+ch
+ch
+ch
+ch
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(20,1,1) = {"
+in
+fY
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+cd
+cd
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+hN
+hM
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cR
+cv
+cX
+cU
+de
+cv
+di
+dk
+dk
+dp
+cv
+du
+cU
+dy
+cW
+dy
+cv
+cR
+cd
+cd
+cd
+cd
+cd
+ce
+ci
+ch
+ch
+ch
+ch
+cj
+ab
+ab
+ab
+ab
+ct
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(21,1,1) = {"
+in
+ab
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cr
+hP
+cr
+cr
+cd
+hM
+hM
+hM
+hM
+hM
+hM
+cr
+cr
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cS
+cv
+cY
+cU
+cW
+cv
+dj
+dk
+dk
+dq
+cv
+iI
+cU
+dy
+dB
+dy
+cv
+cR
+cd
+cd
+cd
+cd
+cd
+ce
+ce
+ce
+ch
+ci
+ci
+ce
+cs
+ab
+ct
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(22,1,1) = {"
+in
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+gd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cR
+cv
+cV
+cU
+cV
+cv
+iH
+dk
+dl
+dr
+cv
+dv
+cU
+dg
+cU
+cU
+cv
+cd
+cd
+cd
+cd
+cd
+cd
+ce
+ch
+ch
+ch
+ch
+cp
+ce
+ct
+ab
+ab
+ab
+cE
+ab
+ct
+cQ
+cQ
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(23,1,1) = {"
+in
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cr
+hN
+cr
+cr
+hS
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cR
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cd
+cd
+cd
+cd
+cd
+cd
+ce
+ck
+ch
+ch
+ch
+ch
+ci
+ab
+ab
+cu
+cu
+cd
+cI
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(24,1,1) = {"
+in
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+gd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cr
+cr
+hN
+hP
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ce
+ce
+ch
+co
+ch
+ce
+ci
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(25,1,1) = {"
+in
+dH
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+dH
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bs
+aO
+aO
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+cd
+cd
+cd
+cr
+cr
+cr
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fX
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ce
+ce
+ce
+ce
+ce
+cd
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(26,1,1) = {"
+in
+ab
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+gd
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aT
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(27,1,1) = {"
+in
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(28,1,1) = {"
+in
+ab
+ab
+dH
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+bj
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aT
+aO
+aO
+bj
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(29,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+bj
+as
+as
+bn
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+hY
+bu
+bu
+bv
+bu
+cd
+cd
+ao
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(30,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+is
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+aO
+aO
+aO
+as
+bk
+at
+bG
+ay
+bw
+ay
+ay
+aw
+ay
+ay
+ay
+ay
+bx
+aw
+ay
+aA
+au
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+cd
+cd
+bu
+bv
+bu
+bu
+bu
+hY
+bu
+bu
+bu
+bu
+bu
+bu
+cd
+cd
+ao
+ab
+ao
+cd
+cd
+cd
+cd
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(31,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+is
+is
+is
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+bl
+at
+aG
+bm
+as
+aX
+at
+bH
+at
+at
+at
+at
+av
+ax
+az
+ax
+aB
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+bu
+bu
+cd
+cd
+ao
+ab
+ao
+ab
+ab
+cd
+ao
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(32,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+is
+is
+is
+is
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+as
+as
+as
+as
+as
+bg
+at
+bH
+at
+at
+at
+at
+bq
+at
+at
+at
+au
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+bu
+bu
+hY
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(33,1,1) = {"
+in
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+is
+is
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+aP
+bz
+aW
+bD
+aE
+at
+at
+bH
+at
+at
+at
+bV
+as
+as
+as
+as
+as
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+iJ
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bv
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+ao
+ab
+ab
+cd
+cd
+ao
+ab
+ab
+ab
+ab
+ao
+ab
+cd
+cd
+cd
+in
+"}
+(34,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aT
+aO
+aO
+as
+aY
+bH
+aZ
+bH
+aF
+at
+at
+bH
+at
+at
+at
+at
+as
+bj
+aO
+aO
+bj
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+fX
+ab
+ab
+ab
+gc
+ab
+ab
+cd
+ab
+cd
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+bu
+bu
+bu
+bu
+bv
+ao
+ab
+ab
+cd
+cd
+cd
+ao
+ab
+ab
+hZ
+ab
+ab
+cd
+cd
+cd
+in
+"}
+(35,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+aU
+aG
+ay
+bC
+bR
+aw
+ay
+bK
+ay
+ay
+ay
+aA
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+fZ
+ab
+dH
+ab
+fZ
+gb
+ab
+fY
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+ao
+ab
+ab
+cd
+cd
+cd
+cd
+bt
+ab
+ab
+ab
+hZ
+cd
+cd
+cd
+in
+"}
+(36,1,1) = {"
+in
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+it
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+aV
+at
+bW
+at
+br
+bH
+at
+bH
+at
+at
+at
+bH
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+fY
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+gd
+ab
+cd
+cd
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+hY
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(37,1,1) = {"
+in
+ab
+ab
+ab
+ir
+ab
+ab
+ab
+ab
+ab
+ab
+it
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+aE
+bg
+at
+bc
+aE
+bL
+bT
+bH
+bT
+at
+bT
+bO
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+fX
+ab
+ab
+ab
+ab
+ab
+ab
+fZ
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+bu
+bu
+bu
+bv
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(38,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ir
+ab
+ab
+ab
+ir
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+ba
+at
+at
+as
+as
+as
+as
+bN
+as
+bn
+as
+as
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+fZ
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+fX
+cd
+cd
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(39,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+bb
+at
+at
+bn
+at
+at
+as
+bH
+at
+at
+bG
+bP
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+cd
+cd
+eZ
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+ao
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(40,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+bj
+as
+as
+as
+as
+as
+bG
+ay
+bF
+bK
+ay
+ay
+bC
+bQ
+as
+aO
+aO
+aO
+aO
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+cd
+cd
+cd
+ab
+ga
+ab
+ab
+ab
+ab
+fX
+ab
+ab
+fZ
+ab
+ab
+cd
+cd
+ab
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bv
+bu
+bu
+hY
+bu
+bu
+bu
+bu
+bv
+bv
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(41,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+bo
+aA
+bS
+as
+bH
+at
+bn
+bH
+at
+aS
+at
+aS
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bv
+bv
+bv
+bu
+bu
+bu
+bu
+bu
+bu
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(42,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+aO
+aO
+aO
+as
+bS
+bA
+ay
+bE
+bI
+at
+as
+bN
+as
+as
+bp
+as
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+bu
+bu
+bv
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+bu
+ab
+bv
+bu
+bu
+bu
+bu
+bu
+bu
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(43,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+by
+bB
+bS
+as
+bH
+bX
+as
+bH
+as
+aQ
+aQ
+aQ
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+cd
+cd
+bv
+bv
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+bv
+cd
+cd
+cd
+cd
+bu
+bu
+bv
+bv
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(44,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aT
+aO
+aO
+as
+as
+as
+as
+as
+bJ
+at
+as
+bH
+as
+aK
+aR
+aQ
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+bv
+bv
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ao
+cd
+cd
+cd
+cd
+bu
+bu
+bv
+bv
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(45,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+iP
+iQ
+iO
+as
+bH
+at
+as
+bH
+as
+aQ
+bU
+aQ
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ao
+cd
+cd
+ao
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+hY
+bu
+bu
+bu
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(46,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+bo
+bC
+ay
+bF
+bK
+aA
+as
+bH
+as
+as
+as
+as
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ge
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ao
+cd
+cd
+ao
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+bu
+bu
+bu
+bu
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(47,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+bd
+be
+bd
+as
+bL
+bM
+as
+bi
+ay
+aA
+at
+bf
+as
+aO
+aO
+bs
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+ab
+ab
+ao
+ao
+cd
+cd
+cd
+cd
+bv
+bv
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(48,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+bN
+as
+as
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ao
+ab
+cd
+cd
+ab
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+bv
+bv
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(49,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+bj
+as
+aH
+at
+bH
+at
+aL
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ao
+ao
+cd
+cd
+ao
+ab
+cd
+cd
+cd
+bv
+bu
+bu
+bu
+bv
+bv
+ao
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+ao
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+in
+"}
+(50,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+as
+aI
+bG
+bC
+aA
+aM
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ao
+cf
+ao
+ao
+ab
+ab
+cd
+cd
+cd
+hY
+bu
+bv
+bu
+bv
+bv
+bv
+ao
+ab
+ab
+cd
+cd
+ao
+ab
+ab
+cd
+ab
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+in
+"}
+(51,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aT
+aO
+aO
+aO
+as
+aJ
+iR
+bh
+bO
+aN
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+bu
+bu
+bu
+bu
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ao
+ab
+ab
+ab
+ao
+ab
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+in
+"}
+(52,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+as
+as
+as
+as
+as
+as
+as
+aO
+aO
+aO
+aO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+bu
+bu
+bu
+bu
+cd
+ao
+ao
+cd
+ab
+ao
+ab
+ao
+ab
+ab
+ab
+ab
+ab
+ab
+ao
+ao
+cd
+cd
+cd
+cd
+in
+"}
+(53,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aT
+aO
+aO
+aO
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+cd
+ao
+cf
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+bu
+bu
+bu
+bv
+cd
+bY
+ab
+cd
+ab
+ab
+ab
+ao
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(54,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+cd
+cd
+ao
+cf
+ab
+ab
+ao
+cd
+cd
+cd
+bu
+bv
+bu
+bv
+cd
+ab
+ab
+ab
+ab
+ab
+ao
+ao
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(55,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+bv
+bv
+hY
+bv
+cd
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(56,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ao
+ao
+ab
+ao
+cd
+ab
+ab
+ab
+ab
+ab
+ao
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(57,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ao
+ab
+ao
+cd
+ab
+ab
+ao
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(58,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(59,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ao
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(60,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+bY
+ab
+ab
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(61,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+gh
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+hZ
+ab
+bY
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(62,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ga
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+cd
+cd
+ao
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(63,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+gh
+ab
+ab
+gh
+ga
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ao
+ao
+ab
+ab
+ab
+ao
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(64,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+bZ
+cb
+bY
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(65,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(66,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gQ
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(67,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+gh
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(68,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gT
+ab
+gT
+ab
+ab
+ab
+ab
+ga
+ab
+ga
+ga
+ab
+ab
+gh
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ga
+ga
+ga
+ga
+ab
+ab
+gh
+ab
+ab
+ga
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(69,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ga
+ga
+ga
+ga
+gQ
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+gP
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(70,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gU
+ga
+ga
+ga
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ap
+ap
+cd
+cd
+ap
+ap
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(71,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+gR
+ab
+gh
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ap
+gi
+ap
+ap
+ap
+ap
+ap
+ap
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(72,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gP
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+gr
+gl
+cd
+cd
+cd
+cd
+cd
+cd
+ap
+ap
+gy
+ap
+ap
+ap
+ap
+ap
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(73,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+gP
+ga
+ga
+ga
+ga
+gP
+ga
+ga
+ga
+ga
+ga
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+gi
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(74,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+gP
+ga
+ga
+ga
+ga
+ga
+ga
+gQ
+gS
+gQ
+gQ
+gQ
+gQ
+gQ
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ga
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+gq
+gn
+gn
+gt
+cd
+cd
+cd
+cd
+ap
+ap
+ap
+ap
+gi
+gy
+ap
+ap
+ap
+ap
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(75,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gQ
+gQ
+gQ
+gQ
+gQ
+gS
+gQ
+ab
+ga
+ga
+ab
+ga
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+gn
+ap
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(76,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ga
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+gl
+gn
+ap
+gn
+gn
+gn
+gl
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(77,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ga
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gP
+ga
+gU
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+gh
+gh
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gw
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(78,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ga
+gQ
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+gl
+gn
+gu
+cd
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+cd
+gA
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(79,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+gh
+ga
+ga
+gP
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gP
+ga
+ab
+gh
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ga
+ab
+gC
+ab
+ab
+gQ
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gv
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(80,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ga
+ga
+gU
+ga
+ga
+ga
+ga
+ga
+gP
+ga
+ga
+ga
+ga
+ga
+ab
+iM
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+gf
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gz
+gn
+gn
+cd
+cd
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(81,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+gh
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ap
+ap
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gl
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(82,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+gh
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+gf
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+cd
+cd
+cd
+gn
+gn
+cd
+cd
+gu
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(83,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ap
+ap
+ap
+ap
+gX
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gP
+gU
+ga
+ga
+ab
+gB
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+cd
+cd
+cd
+cd
+gn
+gn
+cd
+cd
+cd
+gn
+gn
+cd
+cd
+cd
+cd
+gl
+gK
+gn
+cd
+cd
+cd
+cd
+in
+"}
+(84,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gW
+ar
+ar
+ar
+ab
+gh
+ga
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gR
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gm
+gf
+ab
+ap
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+in
+"}
+(85,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ga
+ga
+ab
+ab
+ga
+ga
+gP
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ga
+ga
+ab
+ab
+gR
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+gj
+ab
+ab
+ab
+ap
+cd
+cd
+cd
+cd
+cd
+gs
+gn
+gn
+gA
+cd
+cd
+iF
+gn
+gn
+gl
+cd
+gn
+gn
+gn
+gn
+gl
+cd
+cd
+cd
+in
+"}
+(86,1,1) = {"
+in
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ge
+ga
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+go
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+in
+"}
+(87,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gX
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gU
+gP
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gt
+gn
+gn
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gk
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+in
+"}
+(88,1,1) = {"
+in
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gX
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+gQ
+ga
+ga
+ga
+ga
+ga
+ga
+gP
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ca
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+gk
+gn
+gn
+gn
+gl
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(89,1,1) = {"
+in
+ab
+ab
+cd
+dF
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+en
+dO
+eW
+fe
+fe
+fn
+dO
+eb
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dJ
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gX
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gh
+ga
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+dH
+gf
+ab
+ab
+gk
+gn
+gp
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+gl
+gl
+gk
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(90,1,1) = {"
+in
+dG
+ab
+cd
+dF
+dF
+dI
+dI
+dI
+dI
+dI
+en
+dO
+eM
+eX
+eX
+eX
+eX
+fq
+dO
+eb
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+ab
+cc
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+gh
+ar
+ap
+gX
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ab
+ga
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+gf
+gg
+cd
+gl
+gn
+gn
+gp
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(91,1,1) = {"
+in
+ab
+ab
+ab
+dF
+dF
+dN
+dO
+dO
+eb
+en
+dO
+eH
+eN
+eR
+eR
+eR
+eR
+fm
+fA
+dO
+eb
+en
+dO
+dO
+iU
+dI
+dI
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+gh
+ar
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ga
+ga
+gP
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gU
+ga
+ga
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+gf
+cd
+cd
+cd
+cd
+gl
+gn
+cd
+cd
+gs
+gn
+gn
+gk
+gn
+gn
+gn
+gl
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+gn
+gz
+cd
+cd
+cd
+in
+"}
+(92,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dO
+dO
+dO
+dO
+dO
+ew
+eI
+ef
+ef
+eq
+ey
+ef
+fr
+fB
+ew
+dO
+dO
+dO
+dO
+dO
+dI
+dI
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gV
+ga
+ga
+ga
+ga
+ga
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+cd
+cd
+cd
+cd
+cd
+gl
+gn
+gk
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+gn
+gn
+gn
+dk
+dk
+dk
+gn
+gn
+gu
+cd
+cd
+in
+"}
+(93,1,1) = {"
+in
+ab
+ab
+ab
+dJ
+dL
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+ff
+fl
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+dL
+dI
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ap
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+gQ
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gh
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+cd
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+gx
+gn
+gn
+cd
+cd
+gn
+gn
+gn
+dk
+gG
+gI
+gL
+gn
+gn
+gn
+cd
+cd
+in
+"}
+(94,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dO
+dO
+dO
+ec
+eo
+ec
+eJ
+eO
+eY
+eN
+fm
+eY
+fs
+eJ
+ec
+fI
+fN
+dO
+dO
+dO
+dI
+dL
+ab
+ab
+ab
+ab
+cc
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ap
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ga
+gQ
+gQ
+ga
+ga
+ga
+gQ
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gp
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+cd
+gu
+gn
+dk
+dk
+gF
+cv
+cv
+gM
+dk
+dk
+gn
+cd
+cd
+in
+"}
+(95,1,1) = {"
+in
+ab
+ab
+dH
+dI
+dI
+dP
+dO
+dO
+ed
+ep
+ex
+dO
+er
+eR
+eR
+eR
+eR
+ez
+dO
+fC
+fJ
+fO
+dO
+dO
+iV
+dI
+dI
+dG
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+gh
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ga
+ga
+ga
+ab
+ab
+gP
+ab
+ab
+ab
+ga
+ab
+ab
+ga
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+cd
+gn
+gn
+dk
+dk
+gF
+cv
+cv
+gN
+dk
+gO
+cd
+cd
+cd
+in
+"}
+(96,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dI
+dO
+dO
+dO
+dO
+dO
+dO
+er
+eR
+fg
+eR
+eR
+ez
+dO
+dO
+dO
+dO
+dO
+dO
+dI
+dI
+dI
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ap
+ab
+ga
+ga
+ga
+ga
+ga
+ab
+ga
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+cd
+cd
+gs
+gk
+gn
+gn
+gt
+cd
+cd
+gn
+gD
+dk
+dk
+gH
+gJ
+dk
+dk
+cd
+cd
+cd
+cd
+in
+"}
+(97,1,1) = {"
+in
+ab
+cd
+ab
+dI
+dI
+dI
+dO
+dT
+ee
+ee
+ee
+ee
+eN
+eR
+eR
+eR
+eR
+fm
+ee
+ee
+ee
+ee
+fR
+dO
+dI
+dI
+dI
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ap
+ap
+ar
+gh
+ab
+ap
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ga
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+gC
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+gn
+gn
+gE
+dk
+gz
+gn
+dk
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(98,1,1) = {"
+in
+cd
+cd
+ab
+dK
+dK
+dK
+dO
+dU
+ef
+eq
+ey
+ef
+ef
+fa
+eR
+eR
+fa
+ft
+ef
+fD
+ey
+fP
+fS
+dO
+dK
+dK
+dK
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ap
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gt
+cd
+gv
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+gn
+gn
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(99,1,1) = {"
+in
+cd
+ab
+ab
+dK
+dM
+dI
+dO
+dO
+dO
+er
+ez
+dO
+dO
+dO
+fh
+fh
+dO
+dO
+dO
+er
+ez
+dO
+dO
+dO
+dQ
+dI
+dK
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+cd
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(100,1,1) = {"
+in
+ab
+ab
+ab
+dK
+dI
+dI
+dI
+dV
+eg
+er
+ez
+dO
+eP
+eR
+eR
+eR
+eR
+fu
+dO
+er
+ez
+eg
+dV
+dI
+dI
+dI
+dK
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(101,1,1) = {"
+in
+ab
+ab
+ab
+dK
+dI
+dI
+dI
+dV
+eg
+es
+eA
+dO
+eQ
+eR
+eR
+eR
+eR
+fv
+dO
+fE
+fK
+eg
+dV
+dI
+dI
+dI
+dK
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ap
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ga
+ab
+ab
+ab
+ab
+gh
+ga
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(102,1,1) = {"
+in
+ab
+dH
+ab
+dK
+dI
+dQ
+dO
+dO
+dO
+dO
+dO
+dO
+eR
+fb
+fi
+fj
+fb
+eR
+dO
+dO
+dO
+dO
+dO
+dO
+dI
+dM
+dK
+ab
+ab
+cc
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ap
+ap
+ar
+ap
+gW
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+gh
+ab
+ge
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(103,1,1) = {"
+in
+ab
+ab
+ab
+dK
+dK
+dK
+dO
+dW
+eh
+eh
+eB
+dO
+eS
+fb
+fj
+fj
+fb
+fw
+dO
+fF
+fL
+fF
+fF
+dO
+dK
+dK
+dK
+ab
+ab
+ab
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ap
+ab
+ab
+gh
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(104,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dI
+dO
+dX
+ei
+et
+eC
+dO
+eR
+fb
+fj
+fj
+fb
+eT
+dO
+eR
+eR
+eR
+fT
+dO
+dI
+dI
+dI
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+iE
+iE
+iY
+iE
+je
+"}
+(105,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dI
+dO
+dY
+ej
+et
+ek
+eK
+eT
+eR
+eR
+eR
+eR
+eR
+fh
+eR
+fF
+fF
+fU
+dO
+dI
+dI
+dI
+ab
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ga
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ap
+iG
+iE
+iE
+iX
+je
+"}
+(106,1,1) = {"
+in
+ab
+dH
+ab
+dI
+dI
+dI
+dO
+dZ
+ek
+ek
+eD
+dO
+eR
+eR
+eR
+eR
+eR
+eR
+dO
+eR
+eR
+eR
+iS
+dO
+dI
+dL
+dI
+cd
+cd
+cd
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+gh
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ar
+ap
+iK
+iK
+iW
+iE
+je
+"}
+(107,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dL
+dO
+ea
+ek
+eu
+eE
+dO
+dO
+dO
+fk
+fk
+dO
+dO
+dO
+eR
+fF
+fF
+iT
+dO
+iU
+dI
+dI
+cd
+cd
+dH
+ab
+dG
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+iN
+iK
+iK
+iE
+je
+"}
+(108,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dN
+dO
+dO
+ek
+ej
+eF
+dO
+eU
+fc
+eR
+eR
+fo
+fx
+dO
+fG
+dO
+dO
+dO
+dO
+dO
+dL
+dJ
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+iN
+iN
+iK
+iZ
+je
+"}
+(109,1,1) = {"
+in
+ab
+dG
+ab
+dJ
+dI
+dO
+dO
+dO
+el
+ev
+eG
+dO
+eU
+eR
+eR
+eR
+eR
+fy
+dO
+fH
+fM
+fQ
+dO
+dO
+dO
+dI
+dI
+ab
+ab
+ab
+ab
+cc
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+gh
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ga
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ap
+ap
+ap
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+iN
+iN
+iK
+iE
+je
+"}
+(110,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+eV
+eR
+eR
+eR
+eR
+fz
+dO
+dO
+dO
+dO
+dO
+dO
+dO
+dI
+dI
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ap
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ga
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ap
+ar
+ap
+ab
+ap
+ar
+ar
+ap
+ap
+ap
+ap
+ar
+ap
+ap
+ap
+ar
+ar
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+iN
+iN
+iK
+iE
+je
+"}
+(111,1,1) = {"
+in
+ab
+ab
+ab
+dL
+dI
+dO
+dO
+dO
+dO
+em
+dI
+eL
+dO
+fd
+fd
+fd
+fp
+dO
+em
+dI
+eL
+dO
+dO
+dO
+dO
+dI
+dF
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ap
+ar
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+iN
+iN
+iK
+ja
+je
+"}
+(112,1,1) = {"
+in
+cd
+cd
+cd
+dI
+dI
+dO
+dO
+dO
+em
+dI
+dI
+dI
+eL
+dR
+dR
+dR
+dR
+em
+dI
+dI
+dI
+eL
+dR
+dR
+iV
+dF
+dF
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ar
+ar
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+iN
+iN
+iK
+iK
+je
+"}
+(113,1,1) = {"
+in
+dH
+cd
+cd
+dF
+dI
+dP
+dR
+dR
+dI
+dI
+dI
+dI
+dI
+dS
+dS
+dS
+dS
+dI
+dI
+dI
+dL
+dI
+dS
+dS
+dI
+dF
+dF
+cd
+cd
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ap
+iN
+iN
+iK
+iN
+je
+"}
+(114,1,1) = {"
+in
+ab
+ab
+ab
+dI
+dI
+dI
+dS
+dS
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dI
+dF
+dF
+cd
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ap
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ap
+ar
+ar
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ar
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iK
+iN
+iN
+iN
+je
+"}
+(115,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ge
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ar
+ar
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+gn
+iK
+iN
+iN
+iN
+je
+"}
+(116,1,1) = {"
+in
+cc
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ap
+ar
+ap
+ap
+ap
+ap
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+gn
+iK
+iN
+iN
+iN
+je
+"}
+(117,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ar
+ar
+ap
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+iD
+iK
+iK
+iK
+iK
+je
+"}
+(118,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(119,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ab
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(120,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(121,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ab
+ab
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ap
+ap
+ab
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(122,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ap
+ap
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ap
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(123,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ap
+ab
+ap
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gh
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ap
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cd
+cd
+in
+"}
+(124,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ap
+ap
+ap
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ap
+ap
+ab
+ap
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cv
+hs
+hA
+hE
+dk
+hI
+cv
+cd
+cd
+in
+"}
+(125,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ap
+ap
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ar
+ar
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cv
+ht
+hB
+dk
+hH
+dk
+cv
+cd
+cd
+in
+"}
+(126,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ar
+ap
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cv
+hu
+gY
+dk
+dk
+hJ
+cv
+cd
+cd
+in
+"}
+(127,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cv
+hv
+hC
+hF
+dk
+dk
+cv
+cd
+cd
+in
+"}
+(128,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+aq
+aC
+ab
+ap
+ap
+ap
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+gn
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+dC
+cv
+cv
+cd
+cd
+in
+"}
+(129,1,1) = {"
+in
+ab
+ab
+ab
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+ap
+aq
+aC
+ap
+ap
+ar
+ar
+ar
+ar
+ar
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cv
+cU
+gY
+gY
+hg
+hl
+dk
+hq
+dk
+dk
+gZ
+dk
+dk
+dk
+cd
+cd
+in
+"}
+(130,1,1) = {"
+in
+ab
+ab
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ap
+ap
+aq
+aC
+ap
+ar
+ar
+ar
+ar
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+dC
+cU
+gY
+dk
+dk
+dk
+dk
+dk
+dk
+cU
+dk
+dk
+dk
+hl
+cd
+cd
+in
+"}
+(131,1,1) = {"
+in
+ab
+ab
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+ip
+ip
+iC
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aq
+aC
+ap
+ar
+ar
+ar
+ar
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cv
+cU
+gZ
+dk
+dk
+gZ
+dk
+gY
+cU
+hD
+gY
+dk
+gZ
+cv
+cd
+cd
+in
+"}
+(132,1,1) = {"
+in
+ap
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+ip
+ip
+ab
+iB
+ip
+ip
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aq
+aC
+ap
+ap
+ap
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+gn
+cv
+cv
+cv
+hd
+cv
+cv
+cv
+hd
+cv
+cv
+cv
+hd
+cv
+cv
+cd
+cd
+in
+"}
+(133,1,1) = {"
+in
+ap
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+dH
+iu
+iw
+iu
+ab
+ip
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aq
+aC
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+gn
+cd
+cd
+cv
+ha
+he
+hh
+cv
+hm
+hf
+hw
+cv
+hh
+hf
+hh
+cv
+cd
+cd
+in
+"}
+(134,1,1) = {"
+in
+ap
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+ip
+if
+ix
+if
+ab
+ip
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cv
+hb
+hf
+hi
+cv
+hn
+hf
+hx
+cv
+hG
+hf
+hK
+cv
+cd
+cd
+in
+"}
+(135,1,1) = {"
+in
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+if
+iy
+if
+ip
+ip
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cv
+hc
+hf
+hj
+cv
+ho
+hf
+hy
+cv
+hn
+hf
+hL
+cv
+cd
+cd
+in
+"}
+(136,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+if
+iz
+if
+ip
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+iL
+aa
+ac
+ac
+ac
+ac
+ac
+aa
+ap
+aD
+ap
+ao
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cv
+hb
+hf
+hk
+cv
+hp
+hr
+hz
+cv
+hn
+hf
+he
+cv
+cd
+cd
+in
+"}
+(137,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+if
+ig
+if
+ip
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+ac
+ad
+ag
+aj
+ac
+an
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+gn
+gn
+cd
+cd
+cd
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cd
+cd
+in
+"}
+(138,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+dH
+iv
+ip
+ip
+iA
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+iL
+aa
+ac
+ae
+ah
+ak
+ac
+aa
+ab
+ab
+ao
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(139,1,1) = {"
+in
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ip
+ip
+ip
+dH
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+ac
+af
+ai
+al
+ac
+aa
+ao
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+gn
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+in
+"}
+(140,1,1) = {"
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+jb
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+je
+je
+je
+je
+je
+je
+je
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+in
+"}
diff --git a/maps/tether/submaps/gateway/snowfield.dm b/maps/tether/submaps/gateway/snowfield.dm
new file mode 100644
index 0000000000..8cfed032f5
--- /dev/null
+++ b/maps/tether/submaps/gateway/snowfield.dm
@@ -0,0 +1,171 @@
+// -- Areas -- //
+
+/area/awaymission/snowfield
+ icon_state = "blank"
+// requires_power = 0
+ base_turf = /turf/snow/snow2
+ ambience = list('sound/ambience/ambispace.ogg','sound/music/title2.ogg','sound/music/space.ogg','sound/music/main.ogg','sound/music/traitor.ogg')
+ base_turf = /turf/simulated/floor/snow/snow2
+
+/area/awaymission/snowfield/outside
+ icon_state = "green"
+ requires_power = 1
+ always_unpowered = 1
+ dynamic_lighting = 1
+ power_light = 0
+ power_equip = 0
+ power_environ = 0
+ mobcountmax = 100
+ floracountmax = 7000
+
+ valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar,
+ /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar,
+ /mob/living/simple_mob/animal/wolf)
+ valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
+ /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
+ /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush,
+ /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush,
+ /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass)
+
+/area/awaymission/snowfield/restricted // No mob spawns!
+ icon_state = "red"
+ mobcountmax = 1 // Hacky fix.
+ floracountmax = 100
+ valid_mobs = list(/obj/structure/flora/tree/pine) // Hacky fix.
+ valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine,
+ /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green,
+ /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush,
+ /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush,
+ /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass)
+
+/area/awaymission/snowfield/base
+ icon_state = "away"
+ ambience = null // Todo: Add better ambience.
+
+// -- Mobs -- //
+
+/mob/living/simple_mob/animal/space/bear/polar // More aggressive than normal bears so none of that fancy life() stuff.
+ name = "polar bear"
+ desc = "The real question is, why are you examining it, instead of running away?"
+ icon = 'icons/mob/vore.dmi'
+ icon_state = "polarbear"
+ icon_living = "polarbear"
+ icon_dead = "polarbear-dead"
+ icon_gib = "bear-gib"
+ vore_icons = SA_ICON_LIVING
+ vore_active = 1
+ say_list_type = /datum/say_list/polar_bear
+
+ faction = "polar"
+ maxHealth = 80
+ health = 80 // Polar bear will fuck you up.
+
+ //stop_when_pulled = 0 //VORESTATION AI TEMPORARY REMOVAL
+ //turns_per_move = 5 //VORESTATION AI TEMPORARY REMOVAL
+ see_in_dark = 6
+
+ response_help = "pets"
+ response_disarm = "gently pushes aside"
+ response_harm = "desperately attacks"
+
+ melee_damage_lower = 20
+ melee_damage_upper = 50 // srsly u gon get rekt
+
+ minbodytemp = 0
+
+ //speak_chance = 1 //VORESTATION AI TEMPORARY REMOVAL
+ meat_type = /obj/item/weapon/reagent_containers/food/snacks/bearmeat
+/datum/say_list/polar_bear
+ speak = list("RAWR!","Rawr!","GRR!","Growl!")
+ emote_hear = list("rawrs","grumbles","grawls")
+ emote_see = list("stares ferociously", "stomps")
+
+
+
+/mob/living/simple_mob/animal/space/bear/polar/death()
+ desc = "This bastard sure isn't drinking Space Cola anymore."
+ ..()
+
+/mob/living/simple_mob/animal/sif/sakimm/polar
+ faction = "polar"
+
+/mob/living/simple_mob/animal/sif/diyaab/polar
+ faction = "polar"
+
+/mob/living/simple_mob/animal/sif/shantak/polar
+ faction = "polar"
+
+// -- Items -- //
+
+// For fake solar power.
+/obj/machinery/power/fractal_reactor/fluff/smes
+ name = "power storage unit"
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit. The controls are locked."
+ icon_state = "smes"
+
+/obj/effect/landmark/away
+ name = "awaystart"
+
+/obj/effect/floor_decal/derelict/d1
+ name = "derelict1"
+ icon_state = "derelict1"
+
+/obj/effect/floor_decal/derelict/d2
+ name = "derelict2"
+ icon_state = "derelict2"
+
+/obj/effect/floor_decal/derelict/d3
+ name = "derelict3"
+ icon_state = "derelict3"
+
+/obj/effect/floor_decal/derelict/d4
+ name = "derelict4"
+ icon_state = "derelict4"
+
+/obj/effect/floor_decal/derelict/d5
+ name = "derelict5"
+ icon_state = "derelict5"
+
+/obj/effect/floor_decal/derelict/d6
+ name = "derelict6"
+ icon_state = "derelict6"
+
+/obj/effect/floor_decal/derelict/d7
+ name = "derelict7"
+ icon_state = "derelict7"
+
+/obj/effect/floor_decal/derelict/d8
+ name = "derelict8"
+ icon_state = "derelict8"
+
+/obj/effect/floor_decal/derelict/d9
+ name = "derelict9"
+ icon_state = "derelict9"
+
+/obj/effect/floor_decal/derelict/d10
+ name = "derelict10"
+ icon_state = "derelict10"
+
+/obj/effect/floor_decal/derelict/d11
+ name = "derelict11"
+ icon_state = "derelict11"
+
+/obj/effect/floor_decal/derelict/d12
+ name = "derelict12"
+ icon_state = "derelict12"
+
+/obj/effect/floor_decal/derelict/d13
+ name = "derelict13"
+ icon_state = "derelict13"
+
+/obj/effect/floor_decal/derelict/d14
+ name = "derelict14"
+ icon_state = "derelict14"
+
+/obj/effect/floor_decal/derelict/d15
+ name = "derelict15"
+ icon_state = "derelict15"
+
+/obj/effect/floor_decal/derelict/d16
+ name = "derelict16"
+ icon_state = "derelict16"
\ No newline at end of file
diff --git a/maps/tether/submaps/gateway/snowfield.dmm b/maps/tether/submaps/gateway/snowfield.dmm
new file mode 100644
index 0000000000..aec5b0d0be
--- /dev/null
+++ b/maps/tether/submaps/gateway/snowfield.dmm
@@ -0,0 +1,21573 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/unsimulated/wall/planetary/sif,
+/area/awaymission/snowfield/restricted)
+"ab" = (
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/restricted)
+"ac" = (
+/obj/effect/blocker,
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/restricted)
+"ad" = (
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/outside)
+"ae" = (
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield)
+"af" = (
+/obj/effect/landmark/gateway_scatter,
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield)
+"ag" = (
+/obj/machinery/light/small,
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"ah" = (
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"ai" = (
+/turf/simulated/wall/durasteel,
+/area/awaymission/snowfield/base)
+"aj" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/durasteel,
+/area/awaymission/snowfield/base)
+"ak" = (
+/obj/machinery/door/airlock/hatch,
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"al" = (
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"am" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/item/stack/cable_coil/yellow{
+ amount = 2;
+ icon_state = "coil2"
+ },
+/obj/item/weapon/shovel,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"an" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"ao" = (
+/obj/machinery/power/smes/buildable{
+ charge = 2.5e+006;
+ input_attempt = 1;
+ input_level = 250000;
+ inputting = 1;
+ output_level = 250000;
+ RCon_tag = "Telecommunications Satellite"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"ap" = (
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"aq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"ar" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump-derelict";
+ operating = 0;
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"as" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"at" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"au" = (
+/obj/structure/sign/biohazard,
+/turf/simulated/wall/durasteel,
+/area/awaymission/snowfield/base)
+"av" = (
+/obj/machinery/door/airlock/centcom,
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"aw" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"ax" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"ay" = (
+/obj/machinery/smartfridge/drying_rack,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"az" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aA" = (
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aC" = (
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"aD" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aE" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/item/weapon/tool/wrench,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aF" = (
+/obj/machinery/biogenerator,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aG" = (
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aH" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aI" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aJ" = (
+/obj/structure/closet/jcloset,
+/obj/item/weapon/soap,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"aK" = (
+/obj/structure/closet/jcloset,
+/obj/item/weapon/soap/deluxe,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"aL" = (
+/obj/structure/closet/l3closet/janitor,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"aM" = (
+/obj/structure/closet/crate/hydroponics/prespawned,
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aN" = (
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aO" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"aQ" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Isolation to Waste"
+ },
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aR" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aS" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aT" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aU" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"aV" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Port to Isolation"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aW" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aX" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aY" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"aZ" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/botanydisk,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"ba" = (
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"bb" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bc" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bd" = (
+/obj/machinery/door/airlock/research{
+ name = "Xenoflora Storage";
+ req_access = list(55)
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"be" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bf" = (
+/obj/machinery/botany/editor,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bg" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"bh" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bi" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 2;
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bj" = (
+/obj/machinery/atmospherics/unary/heater{
+ dir = 2;
+ icon_state = "heater"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bk" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"bm" = (
+/obj/machinery/botany/extractor,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bn" = (
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"bo" = (
+/obj/machinery/door/window/northright{
+ name = "Xenoflora Containment";
+ req_access = list(47)
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bp" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bq" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"br" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bs" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bt" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bu" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bv" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bw" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bx" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"by" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"bz" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bA" = (
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bB" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bC" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bD" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ layer = 4;
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bE" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bF" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bG" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/closet/l3closet/scientist,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bH" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/closet/medical_wall{
+ pixel_y = -32
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bI" = (
+/obj/machinery/seed_storage/xenobotany,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bJ" = (
+/obj/machinery/vending/hydronutrients{
+ categories = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bK" = (
+/obj/machinery/smartfridge,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bL" = (
+/obj/structure/table/glass,
+/obj/item/weapon/tape_roll,
+/obj/item/device/analyzer/plant_analyzer,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bM" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/white,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"bN" = (
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/janitorialcart,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"bO" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"bP" = (
+/obj/machinery/portable_atmospherics/hydroponics{
+ closed_system = 1;
+ name = "isolation tray"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bQ" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"bS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"bT" = (
+/obj/machinery/door/airlock/freezer,
+/turf/simulated/floor/tiled/hydro,
+/area/awaymission/snowfield/base)
+"bU" = (
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/snowfield/base)
+"bV" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"bW" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"bX" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"bY" = (
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/snowfield/base)
+"bZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"ca" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cb" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cc" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/sink/kitchen{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cd" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"ce" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/standard,
+/obj/machinery/microwave{
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cf" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cg" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"ch" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"ci" = (
+/obj/structure/table/standard,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cj" = (
+/obj/structure/toilet,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"ck" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/door/window/southright{
+ name = "Shower"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/shower{
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cl" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"cm" = (
+/obj/machinery/gateway/centeraway{
+ calibrated = 0
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"cn" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"co" = (
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/snowfield/base)
+"cp" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cq" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cr" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cs" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"ct" = (
+/obj/machinery/gateway,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"cu" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/snowfield/base)
+"cv" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cw" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/standard,
+/obj/item/weapon/deck/cards,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cx" = (
+/obj/machinery/door/airlock/silver{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cy" = (
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"cz" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/snowfield/base)
+"cA" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/snowfield/base)
+"cB" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/vending/sovietsoda,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cC" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cD" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/wood,
+/area/awaymission/snowfield/base)
+"cE" = (
+/turf/simulated/floor/wood,
+/area/awaymission/snowfield/base)
+"cF" = (
+/obj/structure/bed/padded,
+/turf/simulated/floor/wood,
+/area/awaymission/snowfield/base)
+"cG" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"cH" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"cI" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cJ" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/wood,
+/area/awaymission/snowfield/base)
+"cK" = (
+/obj/structure/table/standard,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/snowfield/base)
+"cL" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/bed/chair/comfy/beige{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cM" = (
+/obj/machinery/door/airlock/highsecurity,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"cN" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/closet/crate/bin,
+/obj/item/trash/pistachios,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cO" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cP" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood,
+/area/awaymission/snowfield/base)
+"cQ" = (
+/obj/machinery/door/airlock/freezer,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"cS" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/snowfield/base)
+"cT" = (
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/derelict/d9,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cW" = (
+/obj/effect/floor_decal/derelict/d10,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cX" = (
+/obj/effect/floor_decal/derelict/d11,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cY" = (
+/obj/effect/floor_decal/derelict/d12,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"cZ" = (
+/obj/effect/floor_decal/derelict/d13,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"da" = (
+/obj/effect/floor_decal/derelict/d14,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"db" = (
+/obj/effect/floor_decal/derelict/d15,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/derelict/d16,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dd" = (
+/obj/effect/floor_decal/derelict/d1,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"de" = (
+/obj/effect/floor_decal/derelict/d2,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"df" = (
+/obj/effect/floor_decal/derelict/d3,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dg" = (
+/obj/effect/floor_decal/derelict/d4,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dh" = (
+/obj/effect/floor_decal/derelict/d5,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"di" = (
+/obj/effect/floor_decal/derelict/d6,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dj" = (
+/obj/effect/floor_decal/derelict/d7,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dk" = (
+/obj/effect/floor_decal/derelict/d8,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dl" = (
+/obj/machinery/door/airlock/security,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"dn" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/southleft,
+/obj/machinery/door/window/northleft,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"do" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/snowfield/base)
+"dp" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/holofloor/wood,
+/area/awaymission/snowfield/base)
+"dq" = (
+/obj/machinery/door/airlock/maintenance{
+ locked = 1;
+ name = "Storage Access"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dr" = (
+/obj/structure/closet/l3closet/security,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"ds" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dt" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"du" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dv" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dw" = (
+/turf/simulated/floor/grass,
+/area/awaymission/snowfield/base)
+"dx" = (
+/turf/simulated/floor/holofloor/wood,
+/area/awaymission/snowfield/base)
+"dy" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/gimmick/russian,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dz" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/l3closet/general,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dA" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/freezer/rations,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dB" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dC" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dD" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/secure/weapon,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dE" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dF" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dG" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/item/device/radio/phone,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dH" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/snowfield/base)
+"dI" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/awaymission/snowfield/base)
+"dJ" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/awaymission/snowfield/base)
+"dK" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/snowfield/base)
+"dL" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dM" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dN" = (
+/obj/structure/closet/bombclosetsecurity,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dO" = (
+/obj/structure/closet/medical_wall{
+ pixel_y = -32
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/adv,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dP" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/backpack/satchel/sec,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dQ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/head/hood/winter,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/internals,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dS" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dT" = (
+/turf/snow/snow2{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/shuttle/awaymission/oldengbase)
+"dU" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/decal/remains/human,
+/obj/structure/closet/crate/mimic/guaranteed{
+ name = "steel crate"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/gmcloset,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dW" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"dX" = (
+/obj/machinery/door/airlock/highsecurity{
+ locked = 1;
+ name = "Secure Armoury Section";
+ req_access = list(150)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dY" = (
+/obj/structure/closet,
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/shoes/boots/jackboots,
+/obj/item/clothing/head/ushanka,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"dZ" = (
+/obj/structure/closet/crate/secure/gear,
+/obj/item/ammo_magazine/clip/c762,
+/obj/item/ammo_magazine/clip/c762,
+/obj/item/ammo_magazine/clip/c762,
+/obj/item/ammo_magazine/clip/c762,
+/obj/item/ammo_magazine/clip/c762,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"ea" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"eb" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/suit/space/syndicate,
+/obj/item/clothing/head/helmet/space/syndicate,
+/obj/structure/closet/crate/internals,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"ec" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/suit/hgpirate,
+/obj/item/clothing/head/hgpiratecap,
+/obj/structure/closet/crate/secure/gear,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"ed" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/suit/armor/combat,
+/obj/structure/closet/crate/secure/gear,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"ee" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/mob/living/simple_mob/mechanical/viscerator,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"ef" = (
+/mob/living/simple_mob/mechanical/viscerator,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"eg" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/mob/living/simple_mob/mechanical/viscerator,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"eh" = (
+/obj/structure/closet/crate/secure/weapon,
+/obj/item/weapon/gun/projectile/shotgun/pump/rifle,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/snowfield/base)
+"ei" = (
+/obj/structure/coatrack,
+/turf/simulated/floor/grass,
+/area/awaymission/snowfield/base)
+"ej" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/wardrobe/red,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"ek" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"el" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"em" = (
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"en" = (
+/obj/machinery/conveyor_switch{
+ id = "away_soviet"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"eo" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/secure/phoron,
+/obj/fiftyspawner/phoron,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"ep" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"eq" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/door/airlock/centcom,
+/turf/simulated/floor/holofloor/wood,
+/area/awaymission/snowfield/base)
+"er" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "away_soviet"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/snowfield/base)
+"es" = (
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"et" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eu" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"ev" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"ew" = (
+/obj/machinery/conveyor_switch{
+ id = "away_soviet"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"ex" = (
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "away_soviet"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"ey" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"ez" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eA" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eB" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eC" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eD" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eE" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eF" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+"eG" = (
+/turf/simulated/floor/reinforced{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/awaymission/snowfield/base)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(3,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(4,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(5,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(6,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(7,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(8,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(9,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(10,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(11,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(12,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(13,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(14,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(15,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(16,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(17,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(18,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(19,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(20,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(21,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(22,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(23,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(24,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(25,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(26,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(27,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(28,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(29,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(30,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(31,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(32,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(33,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(34,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(35,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(36,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(37,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(38,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(39,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(40,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(41,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(42,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(43,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(44,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(45,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(46,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(47,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(48,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(49,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(50,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(51,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(52,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(53,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(54,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(55,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(56,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(57,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(58,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(59,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(60,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(61,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aw
+aM
+bb
+bh
+bo
+bz
+ai
+ai
+ci
+cr
+ai
+cD
+cJ
+cD
+ai
+cT
+cT
+ai
+dr
+dF
+dN
+ai
+dY
+ee
+dY
+ai
+es
+es
+eA
+ez
+ez
+ez
+ez
+ez
+ez
+ez
+ez
+ez
+ez
+et
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(62,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ax
+aN
+aN
+bi
+bp
+aC
+bP
+ai
+cj
+aN
+cx
+cE
+cE
+cE
+cP
+cT
+cT
+dl
+cy
+cy
+cy
+ai
+dY
+ef
+dY
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(63,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ax
+aN
+bc
+bj
+bq
+bA
+bQ
+ai
+ck
+aN
+ai
+cF
+cK
+cF
+ai
+cT
+cT
+ai
+cy
+cy
+cy
+ai
+dY
+ef
+dY
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(64,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ay
+aO
+aO
+bk
+br
+bB
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+cU
+cT
+ai
+ds
+cy
+cy
+dX
+cy
+ef
+cy
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(65,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ai
+aP
+bd
+bl
+ai
+ai
+ai
+bV
+cl
+cs
+cy
+cG
+cy
+ai
+cy
+cT
+cT
+dm
+dt
+cy
+dO
+ai
+dZ
+ef
+eh
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(66,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+az
+aQ
+aC
+aC
+bs
+bC
+ai
+bW
+cm
+ct
+cy
+cy
+cy
+cM
+cy
+cT
+cT
+dn
+du
+cy
+cy
+ai
+dZ
+ef
+eh
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(67,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aA
+aR
+aC
+aC
+bt
+bD
+ai
+bX
+cn
+cu
+cy
+cH
+cy
+ai
+cy
+cT
+cT
+do
+dv
+dG
+dP
+ai
+dZ
+eg
+eh
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(68,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ai
+ai
+ai
+ai
+aA
+aS
+aC
+aC
+bt
+bE
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+cV
+dd
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(69,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+al
+ap
+ar
+ai
+aB
+aT
+be
+be
+bt
+bF
+bR
+bY
+co
+bY
+cz
+bY
+co
+bY
+bR
+cW
+de
+ai
+dw
+dH
+dw
+dw
+dw
+dH
+dw
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(70,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ag
+aj
+am
+ap
+as
+au
+aC
+aU
+be
+be
+bu
+bG
+bS
+bY
+co
+bY
+co
+bY
+co
+bY
+bS
+cX
+df
+ai
+dw
+dI
+dI
+dw
+dI
+dI
+ei
+ai
+et
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(71,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ah
+ak
+an
+ap
+as
+av
+aC
+aU
+be
+be
+aC
+aC
+bT
+bZ
+bZ
+bZ
+bZ
+bZ
+bZ
+bZ
+cQ
+cY
+dg
+dp
+dx
+dx
+dx
+dx
+dx
+dx
+dx
+eq
+eu
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(72,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ao
+aq
+at
+aj
+aC
+aU
+be
+be
+aC
+aC
+bT
+ca
+ca
+ca
+ca
+ca
+ca
+ca
+cQ
+cZ
+dh
+dp
+dx
+dx
+dx
+dx
+dx
+dx
+dx
+eq
+eu
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(73,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ai
+ai
+ai
+ai
+aD
+aV
+be
+be
+bv
+bH
+bR
+bY
+co
+bY
+co
+bY
+co
+bY
+bR
+da
+di
+ai
+dw
+dJ
+dJ
+dw
+dJ
+dJ
+ei
+ai
+ev
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(74,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aE
+aW
+aC
+aC
+bt
+bI
+bS
+bY
+co
+bY
+cA
+bY
+co
+bY
+bS
+db
+dj
+ai
+dw
+dK
+dw
+dw
+dw
+dK
+dw
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(75,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aF
+aX
+aC
+aC
+bt
+bJ
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+dc
+dk
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(76,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aG
+aX
+aC
+aC
+bt
+bK
+ai
+cb
+cp
+cv
+cB
+cI
+cd
+cN
+bR
+cT
+cT
+ai
+dy
+dL
+dQ
+dB
+ea
+dL
+ej
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(77,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aH
+aY
+aC
+aC
+bw
+bL
+ai
+cc
+ch
+ch
+ch
+ch
+ch
+ch
+cR
+cT
+cT
+ai
+dz
+dB
+dC
+dB
+dC
+dB
+ek
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(78,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aI
+aZ
+bf
+bm
+bx
+bM
+ai
+cd
+ch
+cq
+cq
+ch
+ch
+ch
+bS
+cT
+cT
+ai
+dA
+dB
+dR
+dB
+eb
+dB
+el
+ai
+ew
+ez
+eC
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(79,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ce
+cq
+cd
+cd
+cq
+ch
+cO
+ai
+cU
+cT
+dq
+dB
+dB
+dS
+dB
+dB
+dB
+em
+er
+ex
+ex
+eD
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(80,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aJ
+ba
+bg
+bn
+by
+bN
+ai
+cf
+cq
+cw
+cd
+cq
+ch
+ch
+ai
+cT
+cT
+ai
+dC
+dB
+dU
+dB
+dC
+dB
+en
+ai
+ey
+ey
+eE
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(81,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aK
+ba
+ba
+ba
+ba
+bO
+ai
+cg
+ch
+cq
+cq
+ch
+ch
+ch
+cS
+cT
+cT
+ai
+dD
+dB
+dV
+dB
+ec
+dB
+eo
+ai
+es
+es
+eB
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eu
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(82,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+aL
+ba
+ba
+ba
+ba
+ba
+bU
+ch
+ch
+ch
+cC
+ch
+cL
+cL
+ai
+cT
+cT
+ai
+dE
+dM
+dW
+dB
+ed
+dM
+ep
+ai
+es
+es
+eF
+ey
+ey
+ey
+ey
+ey
+ey
+ey
+ey
+ey
+ey
+ev
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(83,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(84,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+dT
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(85,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(86,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(87,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(88,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(89,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(90,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(91,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(92,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(93,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(94,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(95,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(96,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(97,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(98,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(99,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(100,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(101,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(102,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(103,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(104,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(105,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(106,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(107,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(108,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(109,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(110,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(111,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(112,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(113,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(114,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(115,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(116,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(117,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+af
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(118,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(119,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+ae
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(120,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(121,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(122,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(123,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(124,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(125,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(126,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(127,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(128,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(129,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(130,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(131,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(132,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(133,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(134,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(135,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(136,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(137,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(138,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(139,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(140,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/maps/tether/submaps/gateway/zoo.dm b/maps/tether/submaps/gateway/zoo.dm
new file mode 100644
index 0000000000..8dfc885783
--- /dev/null
+++ b/maps/tether/submaps/gateway/zoo.dm
@@ -0,0 +1,44 @@
+// -- Areas -- //
+
+/area/awaymission/zoo
+ icon_state = "green"
+ requires_power = 0
+ dynamic_lighting = 0
+ ambience = list('sound/ambience/ambispace.ogg','sound/music/title2.ogg','sound/music/space.ogg','sound/music/main.ogg','sound/music/traitor.ogg')
+
+/area/awaymission/zoo/solars
+ icon_state = "yellow"
+
+/area/awaymission/zoo/tradeship
+ icon_state = "purple"
+
+/area/awaymission/zoo/syndieship
+ icon_state = "red"
+
+/area/awaymission/zoo/pirateship
+ icon_state = "bluenew"
+
+/obj/item/weapon/paper/zoo
+ name = "\improper Quarterly Report"
+ info = {"
There's nothing but spreadsheets and budget reports on this document, apparently regarding a zoo owned by NanoTrasen."}
+
+/obj/item/weapon/paper/zoo/pirate
+ name = "odd note"
+
+/obj/item/weapon/paper/zoo/pirate/volk
+ info = {"Lady Nebula,
We can't keep these animals here permanently. We're running out of food and they're getting hungry.
+ Ma'isi went missing last night when we sent her to clean up the petting zoo. This morning, we found Tajaran hair in the
+ horse shit. I can't speak for everyone, but I'm out. If these animals break loose, we're all fucking dead. Please get
+ some extra rations of meat before the carnivores realize the electrified grilles don't work right now.
-Volk"}
+
+/obj/item/weapon/paper/zoo/pirate/nebula
+ info = {"Volk,
Throw some prisoners into the cages, then. The client took too long to pay up anyway.
-Lady Nebula"}
+
+/obj/item/weapon/paper/zoo/pirate/haveyouseen
+ info = {"Has anyone seen Za'med? I sent him to get something out of the tool shed and he hasn't come back.
-Meesei"}
+
+/obj/item/weapon/paper/zoo/pirate/warning
+ info = {"Attention crew,
Since apparently you fucking idiots didn't notice, that bulltaur who delivered the bears was
+ Jarome Rognvaldr. I'm sorry, maybe you scabs forgot? Does the name Jarome the Bottomless ring any fucking bells? If he's
+ seen again without a laser bolt hole through his fucking skull, I'm shoving anyone on guard duty up Zed's arse. Are we
+ clear?
-Lady Nebula"}
\ No newline at end of file
diff --git a/maps/tether/submaps/gateway/zoo.dmm b/maps/tether/submaps/gateway/zoo.dmm
new file mode 100644
index 0000000000..33ce2d311b
--- /dev/null
+++ b/maps/tether/submaps/gateway/zoo.dmm
@@ -0,0 +1,69572 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/obj/effect/blocker,
+/turf/space{
+ density = 1;
+ desc = "You can't go there!";
+ name = "The 4th Wall"
+ },
+/area/space)
+"ac" = (
+/obj/effect/blocker,
+/turf/space,
+/area/space)
+"ad" = (
+/turf/simulated/shuttle/wall,
+/area/awaymission/zoo/pirateship)
+"ae" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"af" = (
+/obj/machinery/porta_turret{
+ dir = 8;
+ emagged = 1;
+ installation = /obj/item/weapon/gun/energy/lasercannon
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/zoo/pirateship)
+"ag" = (
+/turf/simulated/floor/reinforced,
+/area/awaymission/zoo/pirateship)
+"ah" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ai" = (
+/obj/structure/table/marble,
+/obj/structure/safe/floor,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/spacecash/c1000,
+/obj/item/weapon/card/emag,
+/obj/item/weapon/beartrap,
+/obj/item/weapon/grenade/spawnergrenade/spesscarp,
+/obj/item/weapon/grenade/spawnergrenade/spesscarp,
+/obj/item/weapon/grenade/spawnergrenade/spesscarp,
+/obj/item/clothing/glasses/thermal/plain/monocle,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/melee/energy/sword/pirate,
+/turf/space,
+/area/awaymission/zoo)
+"aj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ak" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"al" = (
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"am" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"an" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/reinforced,
+/area/awaymission/zoo/pirateship)
+"ao" = (
+/obj/machinery/door/airlock/silver{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ap" = (
+/obj/structure/bed/roller,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aq" = (
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ar" = (
+/obj/item/weapon/surgical/scalpel,
+/obj/structure/closet/crate,
+/obj/item/weapon/tank/anesthetic,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"as" = (
+/obj/item/bodybag,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"at" = (
+/obj/item/weapon/storage/box/syringes,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"au" = (
+/obj/machinery/optable,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"av" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aw" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ax" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ay" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"az" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/packageWrap,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aA" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aD" = (
+/obj/item/weapon/storage/box,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aE" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aF" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aG" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aH" = (
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aI" = (
+/obj/structure/largecrate,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aJ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/spacecash/c500,
+/obj/item/weapon/spacecash/c100,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo/pirateship)
+"aK" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/yellow,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo/pirateship)
+"aL" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen/yellow,
+/obj/item/clothing/suit/space/emergency,
+/obj/item/clothing/head/helmet/space/emergency,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aN" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/shuttle/wall,
+/area/awaymission/zoo/pirateship)
+"aO" = (
+/obj/item/clothing/glasses/regular/hipster,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aP" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aQ" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aR" = (
+/obj/machinery/gateway/centeraway{
+ calibrated = 0
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aS" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/landmark/loot_spawn{
+ live_cargo = 0
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aU" = (
+/turf/simulated/floor/wood,
+/area/awaymission/zoo/pirateship)
+"aV" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo/pirateship)
+"aW" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aX" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aY" = (
+/obj/machinery/gateway,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"aZ" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ba" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bb" = (
+/obj/machinery/light/small,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bd" = (
+/obj/structure/symbol/pr,
+/turf/simulated/shuttle/wall,
+/area/awaymission/zoo/pirateship)
+"be" = (
+/obj/machinery/button/remote/airlock{
+ id = "packerMed";
+ pixel_y = -24
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bf" = (
+/obj/machinery/sleeper,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bg" = (
+/obj/machinery/sleep_console,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bh" = (
+/obj/machinery/door/airlock/silver{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo/pirateship)
+"bi" = (
+/obj/machinery/door/blast/shutters{
+ id = "packerMed"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/landmark/loot_spawn{
+ live_cargo = 0
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bk" = (
+/obj/structure/kitchenspike,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bl" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/landmark/loot_spawn{
+ live_cargo = 0
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bm" = (
+/obj/machinery/button/remote/airlock{
+ id = "packerCargo";
+ pixel_y = -24
+ },
+/obj/machinery/light/small,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bn" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/awaymission/zoo/tradeship)
+"bo" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"bp" = (
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"bq" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/paper{
+ info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen";
+ name = "scribbled note"
+ },
+/obj/item/weapon/tool/screwdriver,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"br" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bs" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bt" = (
+/obj/structure/sink{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bu" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bv" = (
+/obj/machinery/vending/hydronutrients,
+/obj/effect/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bw" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bx" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"by" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bz" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bA" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bB" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bC" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/material/knife,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bE" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bF" = (
+/obj/machinery/door/blast/shutters{
+ id = "packerCargo"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"bG" = (
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"bH" = (
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"bI" = (
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"bJ" = (
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"bK" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"bL" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/tradeship)
+"bM" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r";
+ dir = 4
+ },
+/turf/space,
+/area/awaymission/zoo/tradeship)
+"bN" = (
+/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bO" = (
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bP" = (
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bQ" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bR" = (
+/obj/item/weapon/stool,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bS" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"bT" = (
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"bU" = (
+/obj/machinery/door/airlock/silver,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bV" = (
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bW" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bX" = (
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"bY" = (
+/obj/machinery/button/remote/airlock{
+ id = "packerCargo";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"bZ" = (
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ca" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/rd,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cb" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cc" = (
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cd" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"ce" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"cf" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"cg" = (
+/obj/machinery/sleep_console{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ch" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ci" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/space,
+/area/awaymission/zoo/tradeship)
+"cj" = (
+/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"ck" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cl" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"cm" = (
+/obj/machinery/door/window{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"cn" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"co" = (
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cp" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"cq" = (
+/obj/structure/closet/secure_closet/freezer/meat{
+ opened = 1
+ },
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"cr" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"cs" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"ct" = (
+/obj/item/weapon/tool/crowbar,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo/pirateship)
+"cu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cw" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"cx" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cy" = (
+/obj/machinery/door/airlock/silver,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cz" = (
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"cA" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"cB" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"cC" = (
+/obj/machinery/atm{
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cD" = (
+/obj/machinery/suit_cycler/syndicate,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cE" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cF" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cG" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ layer = 2.8;
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/fire{
+ layer = 2.9;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = -2
+ },
+/obj/item/weapon/reagent_containers/blood/empty,
+/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/structure/closet/medical_wall{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cH" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cI" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper/zoo/pirate/volk,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"cJ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"cK" = (
+/mob/living/simple_mob/humanoid/pirate,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"cL" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cM" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cN" = (
+/obj/machinery/seed_extractor,
+/obj/item/seeds/angelmycelium,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cO" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cP" = (
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"cQ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"cR" = (
+/obj/item/device/multitool,
+/turf/simulated/floor/reinforced,
+/area/awaymission/zoo/pirateship)
+"cS" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/pirateship)
+"cT" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 4
+ },
+/turf/space,
+/area/awaymission/zoo/pirateship)
+"cU" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"cV" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cW" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/obj/machinery/light,
+/obj/structure/table/glass,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cX" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/hos,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"cY" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"cZ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/glasses/square,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"da" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ icon_state = "frame";
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"db" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"dd" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"de" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor7"
+ },
+/area/awaymission/zoo/tradeship)
+"df" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dg" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l";
+ dir = 4
+ },
+/turf/space,
+/area/awaymission/zoo/tradeship)
+"dh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"di" = (
+/obj/item/weapon/stool,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"dj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"dk" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"dl" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/zoo/pirateship)
+"dm" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"dn" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"do" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dq" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ds" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"dt" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"du" = (
+/obj/machinery/vending/medical{
+ pixel_y = -32;
+ req_access = null
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dv" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dw" = (
+/obj/machinery/computer,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"dx" = (
+/obj/machinery/door/airlock/silver{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"dy" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dz" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey1"
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/pirateship)
+"dA" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey1"
+ },
+/obj/structure/plasticflaps,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/pirateship)
+"dB" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/pirateship)
+"dC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/awaymission/zoo/pirateship)
+"dD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"dE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"dF" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dG" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dH" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dI" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/lights,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"dJ" = (
+/mob/living/simple_mob/humanoid/pirate,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"dK" = (
+/obj/machinery/power/fractal_reactor/fluff/converter{
+ mapped_in = 1;
+ power_generation_rate = 10000
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dL" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dM" = (
+/turf/space,
+/area/awaymission/zoo/tradeship)
+"dN" = (
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dO" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dP" = (
+/obj/machinery/door/window/southleft,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dQ" = (
+/obj/machinery/door/window/southright,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dR" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"dS" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/mask/surgical,
+/obj/item/weapon/surgical/retractor{
+ pixel_x = 0;
+ pixel_y = 6
+ },
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/surgical/surgicaldrill,
+/obj/item/weapon/surgical/circular_saw,
+/obj/item/stack/nanopaste,
+/obj/item/weapon/surgical/hemostat{
+ pixel_y = 4
+ },
+/obj/item/weapon/surgical/cautery{
+ pixel_y = 4
+ },
+/obj/item/weapon/surgical/FixOVein{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/surgical/bonegel{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dT" = (
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"dU" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"dV" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/pirateship)
+"dW" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"dZ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ea" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"eb" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "meatConvey1"
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"ec" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"ed" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"ee" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"ef" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eg" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eh" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"ei" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"ej" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"ek" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"el" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"em" = (
+/obj/structure/closet/crate/secure/weapon,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"en" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"eo" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ep" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/cell/high,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"er" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"es" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"et" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eu" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light/small,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ev" = (
+/obj/structure/mirror{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ew" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ex" = (
+/obj/machinery/vending/snack{
+ name = "hacked Getmore Chocolate Corp";
+ prices = list()
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ey" = (
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ez" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/mob/living/simple_mob/humanoid/pirate,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"eA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eB" = (
+/mob/living/simple_mob/animal/space/alien{
+ faction = "pirate"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eC" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eD" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eE" = (
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eF" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"eG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"eH" = (
+/obj/machinery/computer,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eI" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eJ" = (
+/obj/machinery/door/airlock/silver{
+ name = "Toilet"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eK" = (
+/obj/machinery/door/airlock/silver{
+ name = "Restroom"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eL" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor7"
+ },
+/area/awaymission/zoo/tradeship)
+"eM" = (
+/obj/machinery/vending/cigarette{
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eN" = (
+/obj/machinery/door/window/westright{
+ name = "Storefront";
+ req_access = list(160)
+ },
+/obj/structure/table/marble,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eO" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eP" = (
+/obj/item/weapon/tool/wrench,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"eR" = (
+/obj/structure/mopbucket,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/material/knife,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"eT" = (
+/obj/item/weapon/cell/high,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"eU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"eV" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eW" = (
+/obj/machinery/door/airlock/command,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eX" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"eZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fb" = (
+/obj/machinery/door/window/westleft{
+ name = "Storefront";
+ req_access = list(160)
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/marble,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fc" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey2"
+ },
+/obj/item/weapon/material/knife,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/pirateship)
+"fd" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey2"
+ },
+/obj/structure/plasticflaps,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/pirateship)
+"fe" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey2"
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/pirateship)
+"ff" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"fg" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"fh" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"fi" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"fj" = (
+/obj/item/stack/cable_coil/random,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"fk" = (
+/obj/machinery/computer/arcade/battle,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fl" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-09";
+ name = "Esteban";
+ pixel_y = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fm" = (
+/obj/machinery/vending/assist{
+ contraband = null;
+ name = "Old Vending Machine";
+ products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fn" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fo" = (
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fp" = (
+/obj/machinery/light,
+/obj/structure/table/standard,
+/obj/item/weapon/soap,
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fq" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fr" = (
+/obj/machinery/door/window/westright,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fs" = (
+/obj/machinery/button/remote/blast_door{
+ id = "trade";
+ name = "Shop Shutters";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"ft" = (
+/obj/item/weapon/material/knife,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"fu" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "meatConvey2"
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"fv" = (
+/obj/item/weapon/mop,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"fw" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"fx" = (
+/obj/machinery/vending/boozeomat{
+ req_access = null
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor7"
+ },
+/area/awaymission/zoo/tradeship)
+"fy" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fz" = (
+/obj/item/weapon/stool,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"fA" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"fB" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"fC" = (
+/obj/structure/reagent_dispensers,
+/turf/simulated/floor/tiled/freezer,
+/area/awaymission/zoo/pirateship)
+"fD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fE" = (
+/obj/machinery/door/window/northleft,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fF" = (
+/obj/machinery/door/window/northright,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fG" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 2;
+ start_pressure = 740.5
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fH" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fI" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Unlocked Autolathe"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fJ" = (
+/obj/structure/frame{
+ anchored = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"fK" = (
+/obj/machinery/light/small,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"fL" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo/pirateship)
+"fM" = (
+/obj/machinery/door/airlock/silver,
+/turf/simulated/floor,
+/area/awaymission/zoo/pirateship)
+"fN" = (
+/obj/structure/largecrate/animal/cat,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fO" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor7"
+ },
+/area/awaymission/zoo/tradeship)
+"fP" = (
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"fQ" = (
+/obj/item/weapon/stool,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"fR" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper{
+ info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies.";
+ name = "Old Diary"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"fS" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/pen/red,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"fT" = (
+/obj/structure/closet,
+/obj/item/clothing/under/overalls,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"fU" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"fV" = (
+/obj/structure/closet/wardrobe/captain,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fW" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bookcase,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fX" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"fY" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"fZ" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"ga" = (
+/obj/structure/closet/crate/solar,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"gb" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/awaymission/zoo/pirateship)
+"gc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"gd" = (
+/obj/structure/ore_box,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"ge" = (
+/obj/item/stack/cable_coil/random{
+ amount = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"gf" = (
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gg" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"gh" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"gi" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"gj" = (
+/obj/structure/table/woodentable,
+/obj/item/modular_computer/laptop/preset,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"gk" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"gl" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"gm" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/tradeship)
+"gn" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"go" = (
+/obj/structure/bed,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gp" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/item/weapon/storage/wallet/random,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gq" = (
+/obj/structure/closet,
+/obj/item/clothing/under/lawyer/bluesuit,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gr" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/awaymission/zoo/syndieship)
+"gs" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "syndieshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"gt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "syndieshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"gu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "syndieshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"gv" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/captain,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"gw" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -35
+ },
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"gx" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"gy" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"gz" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"gA" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/zoo/tradeship)
+"gB" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"gC" = (
+/obj/machinery/vending/engivend,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"gD" = (
+/obj/machinery/vending/tool,
+/turf/simulated/shuttle/floor/black,
+/area/awaymission/zoo/tradeship)
+"gE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"gF" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen/yellow,
+/obj/item/clothing/suit/space/emergency,
+/obj/item/clothing/head/helmet/space/emergency,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"gG" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"gH" = (
+/obj/machinery/computer,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"gI" = (
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"gJ" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gK" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gL" = (
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gM" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gN" = (
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"gO" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"gP" = (
+/turf/simulated/wall,
+/area/awaymission/zoo)
+"gQ" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"gR" = (
+/obj/item/weapon/caution,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"gS" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"gT" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/spacecash/c10,
+/obj/item/weapon/spacecash/c200,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gU" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/spacecash/c10,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gV" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/spacecash/c1000,
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gW" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/steel,
+/area/awaymission/zoo/pirateship)
+"gX" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"gY" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"gZ" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ha" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hb" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"hc" = (
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"hd" = (
+/obj/machinery/door/airlock/silver{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/simulated/floor,
+/area/awaymission/zoo/pirateship)
+"he" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/glass{
+ amount = 15
+ },
+/obj/item/weapon/cell{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hf" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_y = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hg" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hh" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"hi" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"hj" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"hk" = (
+/obj/item/weapon/storage/box/matches,
+/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"hl" = (
+/obj/item/weapon/contraband/poster,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"hm" = (
+/obj/machinery/door/window/northright,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hn" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ho" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-24"
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hp" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hq" = (
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hr" = (
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo/pirateship)
+"hs" = (
+/obj/structure/flora/pottedplant,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"ht" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_x = -32;
+ pixel_y = 0;
+ req_access = list(150)
+ },
+/obj/item/stack/medical/splint,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hu" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hv" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hw" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hx" = (
+/obj/structure/table/rack,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hy" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hz" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hA" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-xmas"
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hB" = (
+/obj/structure/symbol/em{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hC" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"hD" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hE" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"hF" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -25
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hG" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hH" = (
+/obj/structure/closet,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hI" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"hJ" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -25
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hK" = (
+/obj/structure/closet,
+/obj/item/weapon/reagent_containers/food/snacks/liquidfood,
+/obj/item/weapon/reagent_containers/food/snacks/liquidfood,
+/obj/item/weapon/reagent_containers/food/snacks/liquidfood,
+/obj/item/weapon/reagent_containers/food/snacks/liquidfood,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hL" = (
+/obj/structure/closet,
+/obj/item/weapon/reagent_containers/food/snacks/tastybread,
+/obj/item/weapon/reagent_containers/food/snacks/tastybread,
+/obj/item/weapon/reagent_containers/food/snacks/tastybread,
+/obj/item/weapon/reagent_containers/food/snacks/tastybread,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hM" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hN" = (
+/obj/machinery/flasher{
+ id = "syndieflash";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hO" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 0;
+ pixel_y = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hP" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 28
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hQ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hR" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"hT" = (
+/obj/machinery/door/window/southleft,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hU" = (
+/obj/machinery/door/window/southright,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hV" = (
+/obj/machinery/door/window/northleft,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hW" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hX" = (
+/obj/machinery/vending/assist{
+ contraband = null;
+ name = "AntagCorpVend";
+ products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4)
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"hY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"hZ" = (
+/obj/machinery/vending/cigarette{
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ia" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/button/flasher{
+ id = "syndieflash";
+ name = "Flasher";
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ib" = (
+/mob/living/simple_mob/animal/passive/cat/kitten{
+ name = "Enola"
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ic" = (
+/obj/machinery/suit_cycler/syndicate{
+ locked = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"id" = (
+/obj/structure/table/standard,
+/obj/item/weapon/material/knife{
+ pixel_x = -6
+ },
+/obj/item/weapon/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/item/weapon/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = 9
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ie" = (
+/obj/machinery/door/window/eastleft,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"if" = (
+/obj/machinery/door/window/westright,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ig" = (
+/obj/structure/closet/syndicate/suit{
+ name = "suit closet"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ih" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"ii" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ij" = (
+/obj/machinery/door/window/eastright,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ik" = (
+/mob/living/simple_mob/humanoid/merc/ranged{
+ desc = "He doesn't seem like he's looking for a fight.";
+ faction = "neutral";
+ friendly = "hugs";
+ name = "Mercenary"
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"il" = (
+/obj/machinery/door/window/westleft,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"im" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"in" = (
+/obj/machinery/sleep_console,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"io" = (
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ip" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iq" = (
+/obj/structure/table/standard,
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_y = 32;
+ req_access = list(150)
+ },
+/obj/item/bodybag,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/weapon/reagent_containers/syringe,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"ir" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"is" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/yellow,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"it" = (
+/obj/structure/table/standard,
+/obj/item/borg/sight/thermal,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iu" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iv" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "syndieshutters_infirmary";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"iw" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "syndieshutters_workshop";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"ix" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "syndieshutters_infirmary";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"iy" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iz" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iA" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iB" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "syndieshutters_workshop";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"iC" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "syndieshutters_infirmary";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"iD" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "syndieshutters_workshop";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"iE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iF" = (
+/obj/structure/table/rack,
+/obj/item/device/multitool,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iG" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/surgicaldrill,
+/obj/item/weapon/surgical/cautery,
+/obj/item/weapon/surgical/retractor,
+/obj/item/stack/nanopaste,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/circular_saw,
+/obj/item/weapon/surgical/FixOVein{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/weapon/surgical/hemostat,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iI" = (
+/obj/structure/table/standard,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = 1
+ },
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 1
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iJ" = (
+/obj/structure/table/standard,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iK" = (
+/obj/item/weapon/weldingtool,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iL" = (
+/obj/structure/sign/securearea{
+ name = "CAUTION";
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/mopbucket,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iM" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/obj/machinery/door/window/northright{
+ name = "Telecoms Mainframe";
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iN" = (
+/obj/machinery/door/blast/regular{
+ id = "syndieshutters_telebay";
+ name = "Outer Airlock"
+ },
+/turf/simulated/shuttle/plating,
+/area/awaymission/zoo/syndieship)
+"iO" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iP" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_x = 32;
+ pixel_y = 0;
+ req_access = list(150)
+ },
+/obj/item/weapon/tank/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/gloves/sterile,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/bottle/stoxin,
+/obj/item/weapon/reagent_containers/glass/bottle/stoxin,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iQ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iR" = (
+/obj/item/weapon/tool/crowbar,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iS" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iT" = (
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iU" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iV" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/surgical/bonegel{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/stack/medical/advanced/bruise_pack,
+/turf/simulated/shuttle/floor/darkred,
+/area/awaymission/zoo/syndieship)
+"iW" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/syndieship)
+"iX" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l"
+ },
+/turf/space,
+/area/awaymission/zoo/syndieship)
+"iY" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/space,
+/area/awaymission/zoo/syndieship)
+"iZ" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r"
+ },
+/turf/space,
+/area/awaymission/zoo/syndieship)
+"ja" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jb" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jc" = (
+/obj/structure/symbol/es{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"jd" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"je" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jf" = (
+/obj/structure/symbol/sa{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"jg" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jh" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ji" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jj" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jk" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"jl" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"jm" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 9
+ },
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jn" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jo" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jp" = (
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"jq" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"jr" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"js" = (
+/obj/machinery/door/window/northleft,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"jt" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"ju" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jv" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jw" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jx" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jy" = (
+/obj/machinery/door/airlock/silver{
+ name = "Men's Restroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"jz" = (
+/obj/machinery/door/airlock/silver{
+ name = "Women's Restroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"jA" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"jB" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 9
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jC" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jD" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 10
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jG" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jH" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jI" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"jJ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jK" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jL" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jM" = (
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"jN" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jO" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"jP" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 10
+ },
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"jQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"jT" = (
+/mob/living/simple_mob/animal/passive/chicken{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"jU" = (
+/mob/living/simple_mob/animal/passive/chick,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"jV" = (
+/mob/living/simple_mob/animal/passive/dog/corgi/puppy{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"jW" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jX" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"jY" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"jZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"ka" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"kb" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"kc" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"kd" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"ke" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"kf" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"kg" = (
+/obj/structure/table/marble,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"kh" = (
+/obj/machinery/vending/food,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"ki" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"kj" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"kk" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/hooded/ian_costume,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kl" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/hooded/carp_costume,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"km" = (
+/obj/structure/table/rack,
+/obj/effect/landmark/costume,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kn" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/chickensuit,
+/obj/item/clothing/head/chicken,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"ko" = (
+/obj/structure/table/rack,
+/obj/item/clothing/head/sombrero,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kp" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kq" = (
+/turf/simulated/floor/holofloor/lino,
+/area/awaymission/zoo)
+"kr" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"ks" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/monkeysuit,
+/obj/item/clothing/mask/gas/monkeymask,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kt" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/bio_suit/plaguedoctorsuit,
+/obj/item/clothing/head/plaguedoctorhat,
+/obj/item/clothing/mask/gas/plaguedoctor,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"ku" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/owl,
+/obj/item/clothing/mask/gas/owl_mask,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kv" = (
+/obj/structure/table/rack,
+/obj/item/toy/waterflower,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kw" = (
+/obj/structure/table/rack,
+/obj/item/toy/sword,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kx" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"ky" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"kz" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 9
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"kA" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"kB" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"kC" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"kD" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kE" = (
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kF" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kG" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kH" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/mob/living/simple_mob/animal/passive/bird/parrot/kea{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kI" = (
+/obj/structure/flora/ausbushes/pointybush,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kJ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kK" = (
+/obj/structure/flora/ausbushes/pointybush,
+/mob/living/simple_mob/animal/passive/bird/parrot/pink_cockatoo{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kL" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kM" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"kN" = (
+/obj/structure/urinal{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"kO" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"kP" = (
+/obj/item/frame/mirror,
+/turf/simulated/wall,
+/area/awaymission/zoo)
+"kQ" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"kR" = (
+/obj/machinery/door/airlock/silver{
+ name = "Toilet"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"kS" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"kT" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"kU" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"kV" = (
+/mob/living/simple_mob/animal/passive/cat{
+ faction = "zoo"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"kW" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"kX" = (
+/obj/structure/table/marble,
+/turf/simulated/floor/holofloor/lino,
+/area/awaymission/zoo)
+"kY" = (
+/obj/structure/table/marble,
+/obj/item/weapon/pen/multi,
+/turf/simulated/floor/holofloor/lino,
+/area/awaymission/zoo)
+"kZ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"la" = (
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"lb" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/item/weapon/coin/gold,
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"lc" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"ld" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"le" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/white_cockatoo{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lf" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lg" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/grey{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lh" = (
+/obj/structure/flora/ausbushes,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"li" = (
+/obj/structure/flora/ausbushes/brflowers,
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lj" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/mob/living/simple_mob/animal/passive/bird/parrot/budgerigar/bluegreen{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lk" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "applebush"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"ll" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "Exhibit Airlock"
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"lm" = (
+/mob/living/simple_mob/vore/horse{
+ faction = "zoo"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"ln" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"lo" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "Exhibit Airlock"
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lp" = (
+/obj/structure/table/rack,
+/obj/random/action_figure,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/fancy/crayons,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lr" = (
+/obj/structure/table/rack,
+/obj/random/plushie,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"ls" = (
+/obj/structure/table/marble,
+/obj/item/toy/nanotrasenballoon,
+/turf/simulated/floor/holofloor/lino,
+/area/awaymission/zoo)
+"lt" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register{
+ icon_state = "register_idle";
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/lino,
+/area/awaymission/zoo)
+"lu" = (
+/obj/structure/table/rack,
+/obj/item/device/camera_film,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lv" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/photo_album,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lw" = (
+/obj/structure/table/rack,
+/obj/item/device/camera_film,
+/obj/item/device/camera,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lx" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"ly" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain_full";
+ dir = 1
+ },
+/obj/structure/showcase{
+ name = "Statue";
+ desc = "It looks almost lifelike.";
+ icon = 'icons/obj/statue.dmi';
+ icon_state = "monkey"
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"lz" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"lA" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "Exhibit Airlock"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"lB" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/effect/landmark/away,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"lC" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-16"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"lD" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register{
+ icon_state = "register_idle";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"lE" = (
+/mob/living/simple_mob/animal/passive/chick,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"lF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 10
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"lG" = (
+/obj/item/weapon/coin/silver,
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"lH" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"lI" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/budgerigar{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lJ" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lK" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"lL" = (
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"lM" = (
+/mob/living/simple_mob/animal/passive/cow{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"lN" = (
+/obj/structure/table/rack,
+/obj/item/toy/nanotrasenballoon,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lO" = (
+/obj/structure/table/rack,
+/obj/item/toy/cultsword,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lP" = (
+/obj/structure/table/rack,
+/obj/item/toy/crossbow,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lQ" = (
+/obj/structure/table/rack,
+/obj/item/toy/bosunwhistle,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lR" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/wallet/poly,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lS" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lT" = (
+/obj/structure/table/rack,
+/obj/item/weapon/beach_ball,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lU" = (
+/obj/structure/table/rack,
+/obj/item/weapon/soap/deluxe,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lV" = (
+/obj/structure/table/rack,
+/obj/item/device/binoculars,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lW" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/backpack/clown,
+/obj/item/clothing/shoes/rainbow,
+/obj/item/clothing/under/color/rainbow,
+/obj/item/clothing/under/seromi/undercoat/standard/rainbow,
+/obj/item/clothing/gloves/rainbow,
+/obj/item/clothing/head/soft/rainbow,
+/turf/simulated/floor/holofloor/carpet,
+/area/awaymission/zoo)
+"lX" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"lY" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"lZ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 2
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/awaymission/zoo)
+"ma" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"mb" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"mc" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/white_caique{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"md" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"me" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"mf" = (
+/obj/structure/closet/crate/bin,
+/obj/item/trash/candy,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"mg" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"mh" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"mi" = (
+/obj/machinery/newscaster,
+/turf/simulated/wall,
+/area/awaymission/zoo)
+"mj" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"mk" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"ml" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"mm" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "Exhibit Airlock"
+ },
+/turf/simulated/floor/holofloor/lino,
+/area/awaymission/zoo)
+"mn" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"mo" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"mp" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"mq" = (
+/obj/machinery/door/window/southleft,
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"mr" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ms" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Not to be confused with the common Earth bat, the Space Bat is a mammalian-like creature that is capable of surviving in the vacuum of space! These creatures live and fly in groups, and are most commonly found in caves, such as those on asteroids, or small planetary bodies with light gravity and no atmosphere. These creatures survive by sucking the blood of wayward space travelers, and are considered to be a pest by the Free Trade Union for their habit of infesting space ships sitting at dock. Their origin is currently unknown.";
+ name = "Space Bat Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "This giant snake is a rare beast native to Paraiso, in the Carnelia system. Though normally only found deep in the jungles, these ravenous monsters have been known to slither out onto the planet's many beach resorts to swallow up unwary sunbathers. Otherwise, the creature's diet consists mainly of monkeys that were accidentally introduced to the planet by pet owners. The presence of the invasive monkey species had caused giant snake populations to swell in the 2530's, but today, due to excessive hunting, the giant snake's numbers have dwindled to the point of being an endangered species.";
+ name = "Giant Snake Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Catgirls (not to be confused with Nekos, an interspecies hybrid born of a union between Human and Tajaran parents) were created artificially with the intention of producing a Human-feline hybrid that could serve aboard a space-faring vessel, control pests aboard such ships, and even alleviate stress among male crew members. Their eyes are between 20% and 50% larger than the average Human, which gives them their famously 'Kawaii' appearance. The large eyes trigger a subconscious psychological 'cute' response among Humans, causing them to usually become relaxed in their presence. Some catgirls have learned to abuse this trait, and have evolved to prey upon Humans who linger too close for too long.";
+ name = "Catgirl Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Ir'ash'uint (translating roughly from Skrellian to 'Giant Frog' in Galactic Common), this amphibian lives on the Skrell homeworld Qerrbalak, in the Qerr�valis System. The Giant Frog shares a common, albeit distant ancestry with the Skrell, but unlike the Skrell, its diet is exclusively carnivorous. Its diet includes large insects, fish, and indeed, even Skrell.";
+ name = "Giant Frog Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"my" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mz" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mA" = (
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mD" = (
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"mE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mG" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"mH" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass2"
+ },
+/area/awaymission/zoo)
+"mI" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"mJ" = (
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"mK" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"mL" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mM" = (
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mN" = (
+/obj/structure/window/phoronreinforced{
+ dir = 4;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mQ" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"mR" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass2"
+ },
+/area/awaymission/zoo)
+"mS" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"mT" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"mU" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"mV" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"mW" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1;
+ icon_state = "phoronrwindow";
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/window/phoronreinforced{
+ maxhealth = 10000;
+ name = "robust borosilicate window"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mX" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Exhibit Airlock"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"mY" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"mZ" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"na" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"nb" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"nc" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"nd" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"ne" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"nf" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"ng" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"nh" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"ni" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass2"
+ },
+/area/awaymission/zoo)
+"nj" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"nk" = (
+/obj/structure/symbol/da,
+/turf/simulated/wall,
+/area/awaymission/zoo)
+"nl" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"nm" = (
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"nn" = (
+/obj/structure/flora/ausbushes,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"no" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"np" = (
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"nq" = (
+/obj/structure/bed/chair,
+/obj/structure/showcase{
+ name = "Statue";
+ desc = "It looks almost lifelike.";
+ icon = 'icons/obj/statue.dmi';
+ icon_state = "Human_male"
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"nr" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/awaymission/zoo)
+"ns" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"nt" = (
+/mob/living/simple_mob/animal/passive/tindalos{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"nu" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"nv" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"nw" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"nx" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass4"
+ },
+/area/awaymission/zoo)
+"ny" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"nz" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"nA" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"nB" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"nC" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"nD" = (
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/turf/flooring/misc_vr.dmi';
+ icon_state = "hive";
+ name = "giant honeycomb"
+ },
+/area/awaymission/zoo)
+"nE" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"nF" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"nG" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beachcorner";
+ dir = 1
+ },
+/area/awaymission/zoo)
+"nH" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/awaymission/zoo)
+"nI" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/awaymission/zoo)
+"nJ" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/awaymission/zoo)
+"nK" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beachcorner";
+ dir = 2
+ },
+/area/awaymission/zoo)
+"nL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"nM" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/pen/blue,
+/obj/item/weapon/pen/red{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"nN" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder{
+ pixel_x = -4
+ },
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/item/weapon/folder/blue{
+ pixel_x = 5
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/stamp/internalaffairs,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"nO" = (
+/obj/structure/table/reinforced,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"nP" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Not to be confused with the common Earth bat, the Space Bat is a mammalian-like creature that is capable of surviving in the vacuum of space! These creatures live and fly in groups, and are most commonly found in caves, such as those on asteroids, or small planetary bodies with light gravity and no atmosphere. These creatures survive by sucking the blood of wayward space travelers, and are considered to be a pest by the Free Trade Union for their habit of infesting space ships sitting at dock. Their origin is currently unknown.";
+ name = "Space Bat Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"nQ" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"nR" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"nS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "This giant snake is a rare beast native to Paraiso, in the Carnelia system. Though normally only found deep in the jungles, these ravenous monsters have been known to slither out onto the planet's many beach resorts to swallow up unwary sunbathers. Otherwise, the creature's diet consists mainly of monkeys that were accidentally introduced to the planet by pet owners. The presence of the invasive monkey species had caused giant snake populations to swell in the 2530's, but today, due to excessive hunting, the giant snake's numbers have dwindled to the point of being an endangered species.";
+ name = "Giant Snake Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"nT" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"nU" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"nV" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"nW" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"nX" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"nY" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"nZ" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass2"
+ },
+/area/awaymission/zoo)
+"oa" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass2"
+ },
+/area/awaymission/zoo)
+"ob" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"oc" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Catgirls (not to be confused with Nekos, an interspecies hybrid born of a union between Human and Tajaran parents) were created artificially with the intention of producing a Human-feline hybrid that could serve aboard a space-faring vessel, control pests aboard such ships, and even alleviate stress among male crew members. Their eyes are between 20% and 50% larger than the average Human, which gives them their famously 'Kawaii' appearance. The large eyes trigger a subconscious psychological 'cute' response among Humans, causing them to usually become relaxed in their presence. Some catgirls have learned to abuse this trait, and have evolved to prey upon Humans who linger too close for too long.";
+ name = "Catgirl Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"od" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Ir'ash'uint (translating roughly from Skrellian to 'Giant Frog' in Galactic Common), this amphibian lives on the Skrell homeworld Qerrbalak, in the Qerr�valis System. The Giant Frog shares a common, albeit distant ancestry with the Skrell, but unlike the Skrell, its diet is exclusively carnivorous. Its diet includes large insects, fish, and indeed, even Skrell.";
+ name = "Giant Frog Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"oe" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"of" = (
+/mob/living/simple_mob/vore/aggressive/frog{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"og" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beach";
+ dir = 10
+ },
+/area/awaymission/zoo)
+"oh" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beach";
+ dir = 6
+ },
+/area/awaymission/zoo)
+"oi" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"oj" = (
+/mob/living/simple_mob/animal/passive/tindalos{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"ok" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"ol" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"om" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"on" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"oo" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"op" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"oq" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"or" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"os" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"ot" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/awaymission/zoo)
+"ou" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beach";
+ dir = 2
+ },
+/area/awaymission/zoo)
+"ov" = (
+/mob/living/simple_mob/animal/passive/dog/corgi{
+ faction = "zoo"
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"ow" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"ox" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"oy" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"oz" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"oA" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/mob/living/simple_mob/animal/passive/cat{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"oB" = (
+/mob/living/simple_mob/vore/bee{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/turf/flooring/misc_vr.dmi';
+ icon_state = "hive";
+ name = "giant honeycomb"
+ },
+/area/awaymission/zoo)
+"oC" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"oD" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"oE" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"oF" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/mineral/floor/ignore_mapgen,
+/area/awaymission/zoo)
+"oG" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"oH" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"oI" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"oJ" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"oK" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"oL" = (
+/mob/living/simple_mob/vore/aggressive/giant_snake{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"oM" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"oN" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"oO" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"oP" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"oQ" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"oR" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"oS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Corgi (Welsh for 'dwarf dog') is a small type of herding dog that originated in Wales, on the planet Earth (Sol system). Two separate breeds are recognized: the Pembroke Welsh Corgi (as seen here) and the Cardigan Welsh Corgi. Historically, the Pembroke has been attributed to the influx of dogs alongside Flemish weavers from around the 10th century, while the Cardigan is attributed to the dogs brought with Norse settlers, in particular a common ancestor of the Swedish Vallhund. A certain degree of inbreeding between the two types has been suggested to explain the similarities between the two. Here it is seen in a replica of its natural habitat, the common office building, where it participates in a symbiotic relationship with the Humans who also reside here. In exchange for treats and bellyrubs, the Corgi provides the Humans with emotional support in the otherwise soul-crushing environment of the corporate workplace.";
+ name = "Corgi Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"oT" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"oU" = (
+/mob/living/simple_mob/animal/space/bats{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"oV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Tindalos is a large insect creature native to the Tubau plains of Zzarlaanis, in the Tiphonia system. The Human settlers who live on the planet have compared them to wingless grasshoppers. At high population densities and under certain environmental conditions, the Tindalos have been known to change behavior and form swarms. Tindalos are plant-eaters, sometimes becoming serious pests of cereals, vegetables and pasture, especially when they swarm in their millions and destroy crops over wide areas.";
+ name = "Tindalos Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"oW" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"oX" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"oY" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"oZ" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"pa" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Cats were once common features on many trading, exploration, and naval ships in the early days of Human sailing. Cats were attracted by an abundance of mice and rats, which can cause damage to ropes, woodwork, and eventually as technology progressed, electrical wiring. Rodents also presented a threat to the stores the ship carried, both as cargo and as food for sailors. Furthermore, rats and mice were also sources of disease, which was dangerous for ships at sea for long periods of time. As Humanity thrust its self into the age of slipspace, the Cat has again made the common spaceship its hunting ground for exactly the same reasons it had in times of old. Skrell scientists have noted how the common Cat has been able to tame and even control Humans. It is believed that had the cat ever achieved sentience, Humanity its self would fall to its knees before their feline overlords. Fortunately for Humans across the galaxy, there is negligible evolutionary benefit for the cat to evolve further.";
+ name = "Cat Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"pb" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pc" = (
+/mob/living/simple_mob/vore/catgirl{
+ faction = "zoo"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"pd" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pe" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Space Bumble Bee is a large, usually docile stinging insect native to Virgo-Prime in the Virgo Erigone system. It normally lives in small oases around what few bodies of water exist on the arid landscape, but ever since Humans have come to colonize the world, they have been discovered in city parks even in the capital city of Anur. Despite their gentle demeanor however, they can and will attack when provoked, and are capable of opening their mandibles wide enough to swallow a Human sized victim whole. Deep in their abdomen, they process their victims along with harvested nectar into rich honey.";
+ name = "Space Bumble Bee Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"pf" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Sobaka, also known as the Dog Shark, is an amphibious, cold-blooded animal that lives in the tropical waters of Qerrbalak, in the Qerr�valis System. The Sobaka hunts fish and small animals while on land, but would prefer to scavenge than to hunt. Its nose is far more powerful than any canine species, and are able to smell both on land, and in the sea. The Sobaka are commonly employed as drug-sniffing and bomb-sniffing animals by Skrellian security forces. The Sobaka is a close relative of the sentient species called Akula.";
+ name = "Sobaka Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"pg" = (
+/mob/living/carbon/human/sharkm{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/water,
+/area/awaymission/zoo)
+"ph" = (
+/mob/living/simple_mob/animal/passive/tindalos{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"pi" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"pj" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"pk" = (
+/mob/living/simple_mob/vore/aggressive/giant_snake{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"pl" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"pm" = (
+/mob/living/simple_mob/animal/passive/cat{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"pn" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"po" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pp" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"pq" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"pr" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"ps" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"pt" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"pu" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"pv" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"pw" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"px" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"py" = (
+/obj/structure/flora/ausbushes/palebush,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pz" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"pA" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"pB" = (
+/mob/living/simple_mob/animal/passive/tindalos{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"pC" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"pD" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"pE" = (
+/mob/living/simple_mob/animal/passive/cat{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"pF" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pG" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pH" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pI" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pJ" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"pK" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"pL" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pM" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pN" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pO" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"pP" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"pQ" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"pR" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"pS" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"pT" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"pU" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"pV" = (
+/obj/structure/closet/lawcloset,
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"pW" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"pX" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"pY" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"pZ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"qa" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"qb" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"qc" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"qd" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"qe" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beach";
+ dir = 9
+ },
+/area/awaymission/zoo)
+"qf" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beach";
+ dir = 1
+ },
+/area/awaymission/zoo)
+"qg" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beach";
+ dir = 5
+ },
+/area/awaymission/zoo)
+"qh" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"qi" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"qj" = (
+/obj/effect/floor_decal/carpet{
+ icon_state = "carpet";
+ dir = 2
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"qk" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"ql" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"qm" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"qn" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beachcorner";
+ dir = 4
+ },
+/area/awaymission/zoo)
+"qo" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beachcorner";
+ dir = 8
+ },
+/area/awaymission/zoo)
+"qp" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/lino,
+/area/awaymission/zoo)
+"qq" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"qr" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/awaymission/zoo)
+"qs" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass2"
+ },
+/area/awaymission/zoo)
+"qt" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass4"
+ },
+/area/awaymission/zoo)
+"qu" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass4"
+ },
+/area/awaymission/zoo)
+"qv" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass4"
+ },
+/area/awaymission/zoo)
+"qw" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"qx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qy" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"qz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "A mouse (plural: mice), native to Earth in the Sol system, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail and a high breeding rate. The best known mouse species is the common house mouse (Mus musculus). It is also a popular pet. In some places, certain kinds of field mice are locally common. They are known to invade homes and space ships for food and shelter. Cats, wild dogs, foxes, birds of prey, snakes and even certain kinds of arthropods have been known to prey heavily upon mice. Nevertheless, because of its remarkable adaptability to almost any environment, the mouse is one of the most successful mammalian genera living in the galaxy today.";
+ name = "Mouse Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Sparra are a bird-like race from the planets Eltus and Tal in the Vilous system. These creatures have compared intelligence comparable to avians of the Corvus genus, from Earth. The Sparra are believed to share a common ancestry with one of the sentient races on Tal, called Nevreas. The Sparra have exhibited behavior including complex use of primitive tools, and even modification of tools, a trait which has not even been witnessed in primates besides Humans.";
+ name = "Sparra Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Diyaab is a predatory creature whose various geneses dwell at the upper latitudes of both hemispheres of most continents on Meralar, in the Rarkajar system. They resemble wolverines in appearance, but are slightly larger, and with longer legs. They also have long ears and leonine tails tipped with a contrasting color, the specifics of which vary based on species. They live in packs of up to seven individuals. They are omnivores, consuming Chur'eech nuts and Thaa'dra, as well as fish, eggs, Arnab, and Dubaab. However, they are most notable for being able to take down larger creatures, including Tajara, by using group tactics. They communicate through body language involving the ears and tail. If forcibly separated from their packs with no means of returning, a Diyaab will lay down and die. It has been theorized that they are related to the Farwa.";
+ name = "Diyaab Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Neaera can be essentially described as an odd mix of Salamander, Frog and Monkey, and often travel about the swamps of Qerrbalak via the trees. They hunt the larger insects of the swamps, as well as eat the plant life in the areas. They are most often neutral to both Skrell and Human presence, but they will defend themselves if provoked.";
+ name = "Neaera Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 9
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"qF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"qG" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"qH" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qI" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qJ" = (
+/mob/living/carbon/human/sparram{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"qK" = (
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"qL" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"qM" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"qN" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"qO" = (
+/obj/item/trash/syndi_cakes,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qP" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qQ" = (
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qR" = (
+/mob/living/simple_mob/animal/passive/mouse{
+ faction = "zoo"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qS" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qT" = (
+/obj/item/trash/chips,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qU" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qV" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/device/flashlight,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"qW" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"qX" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"qY" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"qZ" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"ra" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"rb" = (
+/mob/living/carbon/human/neaera{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"rc" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"rd" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"re" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"rf" = (
+/mob/living/simple_mob/animal/sif/diyaab{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"rg" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 10
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"rh" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"ri" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"rj" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"rk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rl" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"rm" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"rn" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"ro" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"rp" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"rq" = (
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"rr" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 2
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"rs" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Xenomorph XX121, better known just as Xenomorph, are an extraterrestrial, endoparasitoid species with multiple life cycles, possibly originating from the planet Proteus (also known as Xenomorph Prime), which orbits the star A6 454. One of the deadliest of all known alien species, these creatures need a host organism in order to reproduce. The appearance of the Xenomorph varies depending on its host. The Human phenotype is generally around 7�8 feet, and roughly 136.0 to 181.4 kilograms in weight, with a long, muscular tail and large, curved, oblong head. The Queen of this species is generally twice as large (they can grow even larger, some even up to 100 feet tall, and stronger if given time) and possesses superior speed, strength and intelligence. The term Xenomorph is derived from the Greek words xeno ('stranger', 'alien', and 'foreigner') and morphe ('form', 'shape'). There are no solid facts as to the origins of the Xenomorph species; instead, there are many assumptions which cannot be confirmed. Based on the limited information we have, the most commonly accepted hypothesis is that they are an artificially created species, although another hypothesis says that they evolved naturally on a planet much different than our own. The Xenomorph lives in a hive together with its queen. Amazingly, the blood and other bodily fluids of the Xenomorph are highly acidic. It is not yet understood how a creature of such biology can exist. The planet Proteus is also home to rare, red-hued Xenomorphs, who frequently fight their black-colored rivals. Some Xenomorphs are alleged to be able to cloak themselves to be invisible to the human eye, but this has not been confirmed by independent study.";
+ name = "Xenomorph Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ru" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Space spider is a broad classification is used to indicate a subspecies of arachnids discovered in the Tau sector. Extremely dangerous and voracious, this family of arachnids managed to evolve and adapt to grow and thrive in a variety of atmospheric conditions, even the complete lack of an atmosphere altogether. The females, bigger than the males, tend to lay their eggs in the bodies of animals killed during hunts. From there, the young specimens (spiderlings) will feed on the corpse for the first few hours of life until the body is picked clean, after which they will leave the nest to begin hunting for small parasites and anaerobic or aerobic creatures. Once they reach adulthood, their societal structure seems to change, pushing them to hunt in small packs, mostly favoring their numbers and aggressive nature, and inoculating a deadly toxin in their victims before sucking the nutrients dry.";
+ name = "Space Spider Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Samak are the apex predator in the various plains regions of the northern hemisphere of Meralar. Unlike many creatures of Meralar, it does not have any fur to speak of. Instead, it is completely covered in thick armored plates which act as a barrier between the Samak's internal warmth and the cold environment. However, this is still not that efficient, so the Samak feed often to keep themselves warm. The Samak have six thick legs tipped with broad claws, and roughly aerodynamic bodies. They burrow underground, detecting prey through incredibly keen thermal detection. They pop up suddenly, grab their next meal, and return underground just as quickly. They prefer larger prey, such as the Baqara, Elu'a Eli, and Tajaran. Due to their voracious appetites and tendency to ruin mine shafts and infrastructure, they have been hunted almost to extinction, mainly by the Slavemasters. For the Tajaran, being able to kill a Samak singlehandedly (and without 'cheating', such as saturation bombing and the like) is an incredible feat, and any individual who pulls it off is lauded greatly.";
+ name = "Samak Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Space bears are the result of reckless experimentation in the early days of interplanetary travel and colonization. Rogue scientists in the beginnings of what is now known as Space Russia got very drunk one night, more than usual, and decided to 'improve' on the terran bear. The result is faster, stronger, and smarter than the original species, but most importantly they are able to survive in the airless void of space without any special equipment. It is unknown if they were originally meant to be living weapons or simply made 'because we can', but the scientists responsible were never heard from again. Now, thanks to faster than light travel and lackluster effort in making sure nothing's riding along, Space Bears can be found living on asteroids and moons across the galaxy, wherever Humanity and friends may roam.";
+ name = "Space Bear Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rx" = (
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"ry" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rz" = (
+/turf/simulated/floor/holofloor/reinforced{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "lava";
+ name = "hololava"
+ },
+/area/awaymission/zoo)
+"rA" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rB" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_s";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rC" = (
+/turf/simulated/floor/holofloor/space,
+/area/awaymission/zoo)
+"rD" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rE" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_s";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rF" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_n";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rG" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_n";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rH" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"rI" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rJ" = (
+/obj/structure/flora/bush,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"rK" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_n";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rL" = (
+/mob/living/simple_mob/animal/space/alien{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rM" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_n";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rN" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rO" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/zoo)
+"rP" = (
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/zoo)
+"rQ" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"rR" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Xenomorph XX121, better known just as Xenomorph, are an extraterrestrial, endoparasitoid species with multiple life cycles, possibly originating from the planet Proteus (also known as Xenomorph Prime), which orbits the star A6 454. One of the deadliest of all known alien species, these creatures need a host organism in order to reproduce. The appearance of the Xenomorph varies depending on its host. The Human phenotype is generally around 7�8 feet, and roughly 136.0 to 181.4 kilograms in weight, with a long, muscular tail and large, curved, oblong head. The Queen of this species is generally twice as large (they can grow even larger, some even up to 100 feet tall, and stronger if given time) and possesses superior speed, strength and intelligence. The term Xenomorph is derived from the Greek words xeno ('stranger', 'alien', and 'foreigner') and morphe ('form', 'shape'). There are no solid facts as to the origins of the Xenomorph species; instead, there are many assumptions which cannot be confirmed. Based on the limited information we have, the most commonly accepted hypothesis is that they are an artificially created species, although another hypothesis says that they evolved naturally on a planet much different than our own. The Xenomorph lives in a hive together with its queen. Amazingly, the blood and other bodily fluids of the Xenomorph are highly acidic. It is not yet understood how a creature of such biology can exist. The planet Proteus is also home to rare, red-hued Xenomorphs, who frequently fight their black-colored rivals. Some Xenomorphs are alleged to be able to cloak themselves to be invisible to the human eye, but this has not been confirmed by independent study.";
+ name = "Xenomorph Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rS" = (
+/mob/living/simple_mob/animal/space/alien/drone{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"rT" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Space spider is a broad classification is used to indicate a subspecies of arachnids discovered in the Tau sector. Extremely dangerous and voracious, this family of arachnids managed to evolve and adapt to grow and thrive in a variety of atmospheric conditions, even the complete lack of an atmosphere altogether. The females, bigger than the males, tend to lay their eggs in the bodies of animals killed during hunts. From there, the young specimens (spiderlings) will feed on the corpse for the first few hours of life until the body is picked clean, after which they will leave the nest to begin hunting for small parasites and anaerobic or aerobic creatures. Once they reach adulthood, their societal structure seems to change, pushing them to hunt in small packs, mostly favoring their numbers and aggressive nature, and inoculating a deadly toxin in their victims before sucking the nutrients dry.";
+ name = "Space Spider Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rU" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"rV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Samak are the apex predator in the various plains regions of the northern hemisphere of Meralar. Unlike many creatures of Meralar, it does not have any fur to speak of. Instead, it is completely covered in thick armored plates which act as a barrier between the Samak's internal warmth and the cold environment. However, this is still not that efficient, so the Samak feed often to keep themselves warm. The Samak have six thick legs tipped with broad claws, and roughly aerodynamic bodies. They burrow underground, detecting prey through incredibly keen thermal detection. They pop up suddenly, grab their next meal, and return underground just as quickly. They prefer larger prey, such as the Baqara, Elu'a Eli, and Tajaran. Due to their voracious appetites and tendency to ruin mine shafts and infrastructure, they have been hunted almost to extinction, mainly by the Slavemasters. For the Tajaran, being able to kill a Samak singlehandedly (and without 'cheating', such as saturation bombing and the like) is an incredible feat, and any individual who pulls it off is lauded greatly.";
+ name = "Samak Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rW" = (
+/mob/living/simple_mob/animal/passive/penguin{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"rX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Space bears are the result of reckless experimentation in the early days of interplanetary travel and colonization. Rogue scientists in the beginnings of what is now known as Space Russia got very drunk one night, more than usual, and decided to 'improve' on the terran bear. The result is faster, stronger, and smarter than the original species, but most importantly they are able to survive in the airless void of space without any special equipment. It is unknown if they were originally meant to be living weapons or simply made 'because we can', but the scientists responsible were never heard from again. Now, thanks to faster than light travel and lackluster effort in making sure nothing's riding along, Space Bears can be found living on asteroids and moons across the galaxy, wherever Humanity and friends may roam.";
+ name = "Space Bear Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"rY" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"rZ" = (
+/mob/living/simple_mob/animal/passive/snake{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"sa" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_s";
+ name = "rocky edge"
+ },
+/mob/living/simple_mob/animal/space/alien/drone{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sb" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_s";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sc" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/mob/living/simple_mob/vore/aggressive/mimic{
+ faction = "zoo"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/zoo)
+"sd" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/mob/living/simple_mob/animal/passive/penguin{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"se" = (
+/obj/effect/floor_decal/asteroid,
+/mob/living/simple_mob/animal/space/bear{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sf" = (
+/obj/structure/flora/grass/both,
+/mob/living/simple_mob/animal/passive/penguin{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"sg" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"sh" = (
+/mob/living/simple_mob/hostile/samak{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"si" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sj" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sk" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sl" = (
+/mob/living/simple_mob/animal/space/carp{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/space,
+/area/awaymission/zoo)
+"sm" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The common Green Snake is an invasive species that makes its home on tropical worlds across the galaxy. Its ancestors were once kept as pets by Humans, but these snakes had escaped into the ventilation of ships over many centuries to feed on the abundance of mice usually infesting the maintinence passages. It is believed that they are descended from the Ball Python, native to Earth, in the Sol system.";
+ name = "Green Snake Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"sn" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"so" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/mob/living/simple_mob/animal/space/alien/drone{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sp" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Don't be fooled, this isn't a storage room, but in fact the hunting ground of a deadly ambush predator known as the Mimic. The origin of this species is largely unknown, but they are theorized to be a cousin of the even more elusive changeling species. However, unlike the changeling, the mimic is known for disguising its self as inanimate objects, rather than other animals. When a suitable prey disturbs the mimic, it attacks, and if possible, swallows its victim whole. Scientists do not know how the creature reproduces, as all efforts to study the organism, dead or alive, have revealed that specimens examined do not have reproductive organs at all! It is hypothesized that the mimic grows and uses reproductive organs during a later life cycle, not yet recorded by any known sentient species.";
+ name = "Mimic Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"sq" = (
+/obj/effect/spider/stickyweb,
+/mob/living/simple_mob/animal/giant_spider/hunter{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sr" = (
+/obj/effect/spider/cocoon{
+ icon_state = "cocoon_large2"
+ },
+/mob/living/simple_mob/animal/giant_spider/hunter{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"ss" = (
+/obj/effect/spider/stickyweb,
+/mob/living/simple_mob/animal/giant_spider{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"st" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Originating from the jungles of Earth, Parrots are a highly intelligent avian that have become an expensive commodity in space, prized for their colorful plumage, and their famous ability to mimic speech. Ship captains traditionally keep them as exotic pets, to demonstrate wealth, and to have someone to talk with. Some researchers believe some parrot species to be capable of intelligence up to that of a 5 year old Human in some aspects. Purebreds of exceptionally varied color pallets are especially prized among traders and space pirates.";
+ name = "Parrot Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"su" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Penguins are a group of aquatic, flightless birds living almost exclusively in the Southern Hemisphere of Earth, in the Sol system, especially in the continent of Antarctica. Highly adapted for life in the water, penguins have countershaded dark and white plumage, and their wings have evolved into flippers. Most penguins feed on krill, fish, squid and other forms of sealife caught while swimming underwater. They spend about half of their lives on land and half in the oceans. Due to the effects of global warming, penguins have been sent off-world to wildlife sanctuaries across the galaxy. Today, many such reserves harbor the last of this species, while penguins are now extinct on Earth.";
+ name = "Space Penguin Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"sv" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sw" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sx" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Space carp are a breed of space fish that come from the phoron giant Erebus. Scientists aren't quite sure how, but the Carp are imbued with the Phoron in their DNA, allowing for them to travel unaided through the vast void of Space, without gravity, air, or anything. They are very dangerous to space travelers, as they are highly aggressive and carnivorous. They often break windows and the like on space stations hoping to get in to eat the crew.";
+ name = "Space Carp Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"sy" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_s";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_n";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sz" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/mob/living/simple_mob/animal/space/alien{
+ faction = "zoo";
+ name = "invisible alien hunter"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sA" = (
+/obj/effect/spider/stickyweb{
+ icon_state = "stickyweb2"
+ },
+/obj/effect/spider/cocoon{
+ icon_state = "cocoon3"
+ },
+/mob/living/simple_mob/animal/giant_spider/hunter{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sB" = (
+/obj/effect/spider/stickyweb{
+ icon_state = "cobweb1"
+ },
+/mob/living/simple_mob/animal/giant_spider/hunter{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sC" = (
+/obj/effect/spider/cocoon{
+ icon_state = "cocoon2"
+ },
+/mob/living/simple_mob/animal/giant_spider/nurse{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sD" = (
+/obj/effect/spider/stickyweb{
+ icon_state = "cobweb2"
+ },
+/mob/living/simple_mob/animal/giant_spider{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sE" = (
+/obj/effect/spider/stickyweb{
+ icon_state = "stickyweb2"
+ },
+/obj/effect/spider/cocoon{
+ icon_state = "cocoon_large1"
+ },
+/mob/living/simple_mob/animal/giant_spider{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sF" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/mob/living/simple_mob/animal/space/alien/queen{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sG" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/zoo)
+"sH" = (
+/obj/effect/spider/cocoon{
+ icon_state = "cocoon_large3"
+ },
+/mob/living/simple_mob/animal/giant_spider/hunter{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sI" = (
+/mob/living/simple_mob/animal/giant_spider{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sJ" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/poly{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"sK" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sL" = (
+/mob/living/simple_mob/animal/space/bear{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sM" = (
+/mob/living/simple_mob/animal/space/alien{
+ faction = "zoo";
+ name = "invisible alien hunter"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sN" = (
+/obj/effect/decal/remains,
+/obj/effect/gibspawner/generic,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/zoo)
+"sO" = (
+/obj/effect/spider/stickyweb,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sP" = (
+/mob/living/simple_mob/animal/passive/snake{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"sQ" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_e";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_s";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sR" = (
+/obj/effect/spider/stickyweb{
+ icon_state = "stickyweb2"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sS" = (
+/obj/effect/spider/stickyweb{
+ icon_state = "cobweb2"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sT" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sU" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"sW" = (
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_w";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_s";
+ name = "rocky edge"
+ },
+/obj/effect/floor_decal/spline{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroid_edge_n";
+ name = "rocky edge"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"sX" = (
+/obj/effect/spider/stickyweb{
+ icon_state = "cobweb1"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"sY" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"sZ" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"ta" = (
+/obj/effect/floor_decal/asteroid,
+/mob/living/simple_mob/animal/space/alien{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"tb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Stoks are a small species of reptile native to Moghes, ranging from two, to three feet tall with colorful scales, and feathers adorning their head, they stand on two legs and have short arms, the legs being digitigrade. They keep to oasises due to their colors which provide camouflage and distance from predators such as duneworms. Keeping in packs so that when they are threatened, they will swarm an attacker and take it down by sheer flanking and numbers. They're an omnivorous species, keeping themselves fed on either predators, or oasis fruits. Despite being the evolutionary equivalent of how monkeys are to humans, Stok are often domesticated and kept as pets by Unathi on Moghes, serving to aid in hunting efforts when trained. Their role in Unathi society is more like that of dogs to humans.";
+ name = "Stok Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "During the latest part of a Diona's life cycle, the Diona casts its self into orbit around a star, so it may soak up solar radiation and grow to immense proportions, even as large as a space station. The yithian, exhibited here, can only be found within these great Diona, where it has a symbiotic relationship with its host. It consumes fungus and parasites that would normally compromise the Diona's health.";
+ name = "Yithian Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"td" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "A relative of the Tajaran, the Farwa is an intelligent pack animal widespread on Meralar, in the Rarkajar system. Usually with tan, orange and brown pelts, this animals is capable of using primitive tools. Its diet is primarly made up of vegetable matter and carrion, although they also hunt opportunistically. The species itself is very diverse, with Farwa in different biomes possessing minute variations in behaviour and genetic make-up.";
+ name = "Farwa Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"te" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "This Redspace creature was generously donated by a NanoTrasen science team headed by Dr. Kisuke Gema of the Virgo Orbital Research Establishment. Other than that, we honestly don't know anything about this monstrosity, other than the fact that it hungers for Human flesh.";
+ name = "Redspace Abomination Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tf" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tg" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"th" = (
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"ti" = (
+/mob/living/simple_mob/animal/passive/yithian{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tj" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil/invisible,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tk" = (
+/turf/simulated/floor/cult,
+/area/awaymission/zoo)
+"tl" = (
+/obj/structure/cult/pylon,
+/turf/simulated/floor/cult,
+/area/awaymission/zoo)
+"tm" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tn" = (
+/obj/effect/floor_decal/asteroid,
+/mob/living/carbon/human/stok{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"to" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tp" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tq" = (
+/mob/living/carbon/human/farwa{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"tr" = (
+/obj/effect/gateway,
+/turf/simulated/floor/cult,
+/area/awaymission/zoo)
+"ts" = (
+/mob/living/carbon/human/stok{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tt" = (
+/obj/structure/sink/puddle,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tu" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tv" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tw" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tx" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/mob/living/simple_mob/animal/passive/yithian{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"ty" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_2"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"tz" = (
+/obj/structure/flora/tree/pine{
+ icon_state = "pine_3"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"tA" = (
+/mob/living/simple_mob/creature{
+ faction = "zoo";
+ name = "redspace abomination"
+ },
+/turf/simulated/floor/cult,
+/area/awaymission/zoo)
+"tB" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tC" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tD" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/cult,
+/area/awaymission/zoo)
+"tE" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tF" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor/wood{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "diona"
+ },
+/area/awaymission/zoo)
+"tG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Decades ago, a group of rogue Skrellian scientists began illegal experimentation on Unathi colonists participating in a nuclear meltdown cleanup effort. In an attempt to create genetically engineered super soldiers, the Deathclaw was born with deadly sharp razor-like claws, incredible agility, robust durability, and high intelligence. When the Skrellian scientists were arrested by the authorities, the Deathclaw was to be destroyed, but some managed to escape captivity into the nuclear wasteland. Normally solitary creatures, they have been known to hunt in packs, and seem to have a preference for Human and Unathi meat.";
+ name = "Deathclaw Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Space Goose (pural: geese) is an aquatic fowl originating from the planet Earth. This breed of Geese however was bred to the clime of space ships and stations as guard animals. They are extremely loud, highly aggressive, and territorial, while their talons and beaks are much longer and sharper than Earth geese. Their aggressive nature makes them difficult to train, but are highly effective when deployed.";
+ name = "Space Goose Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Grey Wolf, Scientific name Canis Lupus, is a species native to the Sol system and specifically the planet Earth. It is the largest extant member of its family, with males averaging 43�45 kg (95�99 lb), and females 36�38.5 kg (79�85 lb). Like the red wolf, it is distinguished from other Canis species by its larger size and less pointed features, particularly on the ears and muzzle. Its winter fur is long and bushy, and predominantly a mottled gray in color, although nearly pure white, red, or brown to black also occur. It is also know by the name Timber Wolf. The gray wolf is the second most specialised member of the genus Canis, as demonstrated by its morphological adaptations to hunting large prey, its more gregarious nature, and its highly advanced expressive behavior. It is nonetheless closely related enough to smaller Canis species, such as the Sol Coyote or Golden Jackal to produce fertile hybrids. It is the only species of Canis to have a range encompassing both the Old and New planets, due to being popular as a traveling companion, an easier to tame circus attraction compared to tigers, and its valuable use in ridding polar worlds of large predators. It was also spread through some worlds to deal with Cloud Fox infestations. While normally indifferent to foxes aside from hunting territories, the Grey Wolf has shown great hostility to a special strain of Fox mutation found on the planet Andorss called the Cloud Fox. Bafflingly, these creatures share nothing in common that should lead them to be enemies, as the Grey Wolf is a predator and lives in snowy areas, whereas the Cloud Fox is an herbivore, largely found in Corn rich areas. Scientists have yet to explain this, although several other animals have also been shown to show hostility towards Cloud Foxes, namely the Macromeleon and Carousel Panther, both of whom get along well with Grey Wolves.";
+ name = "Gray Wolf Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "While all the species of these large predators are commonly known as Dragons (Draconius Regalis), this is mainly an umbrella term for a number of varieties of these large, reptilian creatures. There are numerous varieties of dragons found throughout the galaxy, and recounts of these creatures can be traced back to Skrell civilization's first interplanetary travels speaking of a large, unknown creature attacking and devouring the closeby cargo ships. Mainly solitary creatures, the Dragons roam large areas of space, capable of adapting to a large variety of atmospheres thanks to each sub-species natural affinity to various elements. While in today's population there are a numerous subspecies, all of these can be traced back to what archaeologists claimed to be a 'phoron' Dragon, by the biological analysis of the fossils found on asteroids in the Virgo-Erigone system. The creatures displayed here were reconstituted from such fossils, generously donated by the Virgo Orbital Research Establishment.";
+ name = "Phoron Dragon Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tK" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tL" = (
+/obj/effect/floor_decal/asteroid,
+/obj/effect/decal/cleanable/greenglow,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tM" = (
+/obj/effect/gibspawner/human,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"tN" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"tO" = (
+/obj/effect/floor_decal/asteroid,
+/mob/living/simple_mob/vore/aggressive/dino{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tP" = (
+/obj/effect/decal/cleanable/greenglow,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Decades ago, a group of rogue Skrellian scientists began illegal experimentation on Unathi colonists participating in a nuclear meltdown cleanup effort. In an attempt to create genetically engineered super soldiers, the Deathclaw was born with deadly sharp razor-like claws, incredible agility, robust durability, and high intelligence. When the Skrellian scientists were arrested by the authorities, the Deathclaw was to be destroyed, but some managed to escape captivity into the nuclear wasteland. Normally solitary creatures, they have been known to hunt in packs, and seem to have a preference for Human and Unathi meat.";
+ name = "Deathclaw Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tR" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Space Goose (pural: geese) is an aquatic fowl originating from the planet Earth. This breed of Geese however was bred to the clime of space ships and stations as guard animals. They are extremely loud, highly aggressive, and territorial, while their talons and beaks are much longer and sharper than Earth geese. Their aggressive nature makes them difficult to train, but are highly effective when deployed.";
+ name = "Space Goose Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Grey Wolf, Scientific name Canis Lupus, is a species native to the Sol system and specifically the planet Earth. It is the largest extant member of its family, with males averaging 43�45 kg (95�99 lb), and females 36�38.5 kg (79�85 lb). Like the red wolf, it is distinguished from other Canis species by its larger size and less pointed features, particularly on the ears and muzzle. Its winter fur is long and bushy, and predominantly a mottled gray in color, although nearly pure white, red, or brown to black also occur. It is also know by the name Timber Wolf. The gray wolf is the second most specialised member of the genus Canis, as demonstrated by its morphological adaptations to hunting large prey, its more gregarious nature, and its highly advanced expressive behavior. It is nonetheless closely related enough to smaller Canis species, such as the Sol Coyote or Golden Jackal to produce fertile hybrids. It is the only species of Canis to have a range encompassing both the Old and New planets, due to being popular as a traveling companion, an easier to tame circus attraction compared to tigers, and its valuable use in ridding polar worlds of large predators. It was also spread through some worlds to deal with Cloud Fox infestations. While normally indifferent to foxes aside from hunting territories, the Grey Wolf has shown great hostility to a special strain of Fox mutation found on the planet Andorss called the Cloud Fox. Bafflingly, these creatures share nothing in common that should lead them to be enemies, as the Grey Wolf is a predator and lives in snowy areas, whereas the Cloud Fox is an herbivore, largely found in Corn rich areas. Scientists have yet to explain this, although several other animals have also been shown to show hostility towards Cloud Foxes, namely the Macromeleon and Carousel Panther, both of whom get along well with Grey Wolves.";
+ name = "Gray Wolf Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tT" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "While all the species of these large predators are commonly known as Dragons (Draconius Regalis), this is mainly an umbrella term for a number of varieties of these large, reptilian creatures. There are numerous varieties of dragons found throughout the galaxy, and recounts of these creatures can be traced back to Skrell civilization's first interplanetary travels speaking of a large, unknown creature attacking and devouring the closeby cargo ships. Mainly solitary creatures, the Dragons roam large areas of space, capable of adapting to a large variety of atmospheres thanks to each sub-species natural affinity to various elements. While in today's population there are a numerous subspecies, all of these can be traced back to what archaeologists claimed to be a 'phoron' Dragon, by the biological analysis of the fossils found on asteroids in the Virgo-Erigone system. The creatures displayed here were reconstituted from such fossils, generously donated by the Virgo Orbital Research Establishment.";
+ name = "Phoron Dragon Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"tU" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"tV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/mimic/guaranteed,
+/turf/simulated/floor/tiled/neutral,
+/area/awaymission/zoo)
+"tW" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tX" = (
+/mob/living/simple_mob/vore/aggressive/dragon{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "asteroidplating";
+ name = "scorched sand"
+ },
+/area/awaymission/zoo)
+"tY" = (
+/mob/living/simple_mob/animal/passive/lizard{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"tZ" = (
+/mob/living/simple_mob/tomato{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"ua" = (
+/mob/living/simple_mob/fox{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"ub" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Voracious Lizard is a relatively new species, muted from the common space lizard by exposure to Phoron. These creatures are found commonly in and around facilities where phoron is mined, refined, or stored. They have been known to attack other creatures in groups, and are able to unhinge their jaws to swallow Human-sized prey whole. The species was first discovered in the Virgo-Erigone system, and have since become a dangerous pest.";
+ name = "Voracious Lizard Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uc" = (
+/obj/effect/floor_decal/asteroid,
+/mob/living/simple_mob/vore/aggressive/deathclaw{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"ud" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Common Space Lizard (Pordacis Stellae Vulgaris) is a common critter amongst space stations. Their origin traces back to genetically modified wall lizards to survive the hazardous conditions of space, this hardy animal is surprisingly tough and able to rapidly regenerate dead cells from radiation exposure and is virtually immune against cancerous growths. Its diet is varied, as it eats what it gets, from discarded junk food to mice and small spiders.";
+ name = "Lizard Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ue" = (
+/mob/living/simple_mob/animal/space/goose{
+ faction = "zoo"
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"uf" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Originally a cult movie monster, a team of geneticists eventually turned the Animate Tomato from fiction to reality. While not harmful in any way, some people consider its grin to be disturbing. It reproduces in the same manner as plants, coming off of the vine when harvested or when it gets ripe enough, afterwards wandering about on its own.";
+ name = "Animate Tomato Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ug" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Foxes are small-to-medium-sized, omnivorous mammals belonging to several genera of the family Canidae. Foxes are slightly smaller than a medium-size domestic dog, with a flattened skull, upright triangular ears, a pointed, slightly upturned snout, and a long bushy tail (or brush). These foxes are Red Foxes, largest of the true foxes, has the greatest geographic range of all members of the Carnivora family, originally spanning across the entire Northern Hemisphere of Earth from the Arctic Circle to North Africa, North America and Eurasia, and has grown to be found on many forest and garden planets across the galaxy.";
+ name = "Fox Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uh" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "A mouse (plural: mice), native to Earth in the Sol system, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail and a high breeding rate. The best known mouse species is the common house mouse (Mus musculus). It is also a popular pet. In some places, certain kinds of field mice are locally common. They are known to invade homes and space ships for food and shelter. Cats, wild dogs, foxes, birds of prey, snakes and even certain kinds of arthropods have been known to prey heavily upon mice. Nevertheless, because of its remarkable adaptability to almost any environment, the mouse is one of the most successful mammalian genera living in the galaxy today.";
+ name = "Slime Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ui" = (
+/mob/living/simple_mob/vore/aggressive/deathclaw{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"uj" = (
+/mob/living/simple_mob/slime/feral/dark_blue{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"uk" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/mob/living/simple_mob/vore/aggressive/dino{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"ul" = (
+/obj/effect/floor_decal/asteroid,
+/mob/living/simple_mob/animal/passive/lizard{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"um" = (
+/obj/effect/landmark/away,
+/mob/living/simple_mob/animal/space/goose{
+ faction = "zoo"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"un" = (
+/mob/living/simple_mob/animal/wolf{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"uo" = (
+/mob/living/simple_mob/animal/space/goose{
+ faction = "zoo"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/zoo)
+"up" = (
+/obj/structure/symbol/sa,
+/turf/simulated/wall,
+/area/awaymission/zoo)
+"uq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Saru (also incorrectly known as Sergalings) are the smaller, unevolved, far more docile cousins of the Sergals, and are usually thought of as either pests, food, or pets. They are a commodity that the Sergal use in their trades with other species due to their cute appearance and quick breeding. Contrary to popular belief, they are not sergal pups, despite their similar appearance. Note the distinctly stubbier noses, compared to true sergal pups. Unfortunately, the mistake has been made more than once, even by other sergals, wherein actual young sergals have been mistakenly sold to traders with tragic consequences... for the traders. The Saru are, like the Sergals, native to the planet Eltus, in the Vilous system. However, they are also found on the planet Tal in the same system.";
+ name = "Saru Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ur" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The brown bear (Ursus arctos) is a large bear with the widest distribution of any living ursid. The species is distributed across much of northern Eurasia and North America, on planet Earth. It is one of the two largest terrestrial carnivorans alive today, rivaled in body size only by its close cousin, the polar bear (Ursus maritimus), which is much less variable in size and averages larger due to this. There are several recognized subspecies, many of which are quite well-known within their native ranges, found in the brown bear species.";
+ name = "Brown Bear Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"us" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Tamaskan dogs are a crossbreed, specifically designed by dog fanciers on Earth, to morphologically resemble a wolfdog. It is a cross of several standardized breeds of the sled dog type, and its bloodlines may sometimes include a small amount of wolfdog stock. It is a highly versatile dog that can excel in agility, obedience and working trials. These traits have made the Tamaskan a popular animal among Human colonists on icy worlds.";
+ name = "Tamaskan Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"ut" = (
+/obj/structure/largecrate/animal/cow,
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"uu" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"uv" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"uw" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"ux" = (
+/obj/structure/sink/puddle,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"uy" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"uz" = (
+/obj/effect/floor_decal/asteroid,
+/mob/living/carbon/human/sergallingm{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"uA" = (
+/mob/living/simple_mob/animal/space/bear/brown{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"uB" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass1"
+ },
+/area/awaymission/zoo)
+"uC" = (
+/mob/living/carbon/human/sergallingm{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass4"
+ },
+/area/awaymission/zoo)
+"uD" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"uE" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"uF" = (
+/mob/living/simple_mob/animal/passive/dog/tamaskan{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"uG" = (
+/obj/item/stack/tile/grass,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uH" = (
+/obj/item/stack/tile/grass,
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"uI" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass0"
+ },
+/area/awaymission/zoo)
+"uJ" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Exhibit Airlock"
+ },
+/obj/item/tape/engineering{
+ icon_state = "engineering_door_0"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uK" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass3"
+ },
+/area/awaymission/zoo)
+"uL" = (
+/mob/living/carbon/human/sergallingm{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"uM" = (
+/mob/living/carbon/human/sergallingm{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"uN" = (
+/obj/structure/flora/ausbushes/genericbush,
+/mob/living/simple_mob/animal/space/bear/brown{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/awaymission/zoo)
+"uO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The Sol-system native Panther, found primarily on the Sol-system planet Earth, is a large mammal belonging to the Felidae family. Found in a variety of environment, like most big cats the Panther inhabits a large number of habitats and is a carnivorous, nocturnal predator. Of particular note are the various patterns of their fur - the most known one, especially thanks to Sol popular culture (books, sequential art and movies) is the black panther, a species that displays a fur pattern completely black at a first glance, but other species can display a much wider variety of patterns, another one of the most common being a beige color with large, black spots. These patterns were mainly evolved as a mean to conceal itself in the surrounding environment, to ambush an unsuspecting prey.";
+ name = "Panther Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Shantak are a pack-hunting carnivore native to Meralar. Using loud barks and growls, similar to that of wolves, the shantak is able to communicate verbally with its hunting partners in order to coordinate attacks. The largest female of the group is usually in charge, and is considered to be the alpha of the pack.";
+ name = "Shantak Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "Space Pike are a larger, more territorial cousin of the famous Space Carp whose origins can also be traced to the Erebus system. Like the Space Carp, their DNA is infused with Phoron. However, the Space Pike were hunted nearly to extinction for their vibrant purple scales. They were declared a critically endangered species in 2556, but that status has been lifted recently due to a substantial bounce back in numbers. They are now only considered a vulnerable species. Space Pike feed on space slugs, space worms, sometimes space carp, and the occasional space man. The space bear is considered its mortal enemy.";
+ name = "Space Pike Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uR" = (
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uS" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"uT" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"uU" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"uV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "The Sol-system native Panther, found primarily on the Sol-system planet Earth, is a large mammal belonging to the Felidae family. Found in a variety of environment, like most big cats the Panther inhabits a large number of habitats and is a carnivorous, nocturnal predator. Of particular note are the various patterns of their fur - the most known one, especially thanks to Sol popular culture (books, sequential art and movies) is the black panther, a species that displays a fur pattern completely black at a first glance, but other species can display a much wider variety of patterns, another one of the most common being a beige color with large, black spots. These patterns were mainly evolved as a mean to conceal itself in the surrounding environment, to ambush an unsuspecting prey.";
+ name = "Panther Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uW" = (
+/turf/simulated/floor/holofloor/beach/water{
+ icon_state = "beach";
+ dir = 8
+ },
+/area/awaymission/zoo)
+"uX" = (
+/obj/effect/overlay/palmtree_l,
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/awaymission/zoo)
+"uY" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Shantak are a pack-hunting carnivore native to Meralar. Using loud barks and growls, similar to that of wolves, the shantak is able to communicate verbally with its hunting partners in order to coordinate attacks. The largest female of the group is usually in charge, and is considered to be the alpha of the pack.";
+ name = "Shantak Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"uZ" = (
+/mob/living/simple_mob/animal/space/carp/large{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"va" = (
+/obj/structure/flora/ausbushes/fernybush,
+/mob/living/carbon/human/monkey{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"vb" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"vc" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"vd" = (
+/mob/living/simple_mob/animal/passive/crab{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/awaymission/zoo)
+"ve" = (
+/mob/living/carbon/human/monkey{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass3"
+ },
+/area/awaymission/zoo)
+"vf" = (
+/mob/living/simple_mob/vore/aggressive/panther{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/grass{
+ icon = 'icons/jungle.dmi';
+ icon_state = "grass2"
+ },
+/area/awaymission/zoo)
+"vg" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "A species incredibly similar to Humans. The monkey is a resident of Earth, the home planet of Humanity, and shares many traits with Humans, such as opposable thumbs, and a love of flinging fecal matter at each other. Monkeys are valued for their dancing ability, and thanks to the recent boom of monkey dance classes, the dancing monkey industry is growing. Monkeys are also commonly used in scientific research that requires testing on products meant to be used by Humans. In fact, some of the first creatures to leave Earth's atmosphere in the infancy of Humanity's space age were dogs and monkeys!";
+ name = "Monkey Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vh" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Crabs are decapod crustaceans of the infraorder Brachyura, which live in all the oceans on the planet Earth, in some fresh water, and even a few species which thrive on land. They are generally covered with a thick exoskeleton and have a single pair of claws. They are often kept as pets or eaten for food by Humans. Many other animals with similar names, such as king crabs, hermit crabs, porcelain crabs, horseshoe crabs, and crab lice, are not true crabs.";
+ name = "Crab Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vi" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/holofloor/desert,
+/area/awaymission/zoo)
+"vj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "This is not an empty exhibit. Note the pine tree in the center of the pen. This is the infamous Killer Pine Tree. Thought to be a relative of the mimic, the Killer Tree is, much like its cousins, an ambush predator. However, like the mimic, it is not known where this species is from, how it reproduces, or how it has found its way across the galaxy into new biomes.";
+ name = "Killer Tree Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vk" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/sign/kiddieplaque{
+ desc = "Space Pike are a larger, more territorial cousin of the famous Space Carp whose origins can also be traced to the Erebus system. Like the Space Carp, their DNA is infused with Phoron. However, the Space Pike were hunted nearly to extinction for their vibrant purple scales. They were declared a critically endangered species in 2556, but that status has been lifted recently due to a substantial bounce back in numbers. They are now only considered a vulnerable species. Space Pike feed on space slugs, space worms, sometimes space carp, and the occasional space man. The space bear is considered its mortal enemy.";
+ name = "Space Pike Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vl" = (
+/mob/living/simple_mob/animal/passive/crab{
+ faction = "zoo";
+ icon_dead = "evilcrab_dead";
+ icon_living = "evilcrab";
+ icon_state = "evilcrab"
+ },
+/turf/simulated/floor/holofloor/beach/water,
+/area/awaymission/zoo)
+"vm" = (
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vn" = (
+/mob/living/simple_mob/hostile/shantak{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"vo" = (
+/mob/living/carbon/human/monkey{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass2"
+ },
+/area/awaymission/zoo)
+"vp" = (
+/mob/living/simple_mob/hostile/shantak{
+ color = "";
+ faction = "zoo";
+ health = 100;
+ maxHealth = 100;
+ name = "alpha shantak"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"vq" = (
+/mob/living/simple_mob/animal/space/tree{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"vr" = (
+/obj/structure/flora/bush,
+/mob/living/simple_mob/hostile/shantak{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/awaymission/zoo)
+"vs" = (
+/mob/living/carbon/human/monkey{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "dgrass0"
+ },
+/area/awaymission/zoo)
+"vt" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/mob/living/carbon/human/monkey{
+ faction = "zoo"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "fullgrass1"
+ },
+/area/awaymission/zoo)
+"vu" = (
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vv" = (
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/obj/item/stack/tile/grass,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vw" = (
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vx" = (
+/obj/fiftyspawner/grass,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "The polar bear (Ursus maritimus) is a carnivorous bear whose native range once lay largely within the Arctic Circle on Earth, encompassing the Arctic Ocean, its surrounding seas, and surrounding land masses. Although it is the sister species of the brown bear, it has evolved to occupy a narrower ecological niche, with many body characteristics adapted for cold temperatures, for moving across snow, ice, and open water, and for hunting seals, which made up most of its original diet. Although most polar bears are born on land, they spent most of their time on the sea ice. Their scientific name means 'maritime bear', and derives from this fact. Polar bears hunted their preferred food of seals from the edge of sea ice, often living off fat reserves when no sea ice is present. Because of their dependence on the sea ice, polar bears are classified as marine mammals. However, because of habitat loss caused by climate change, the polar bear had gone completely extinct on Earth. The return of the polar bear is thanks to the preservation of genetic records written in the 21st century, which were later used by Space Russians to create a wildlife reserve on the planet Europa in 2492. This has generally been regarded as a poor decision.";
+ name = "Polar Bear Exhibit"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vz" = (
+/mob/living/simple_mob/animal/space/bear/polar{
+ faction = "zoo"
+ },
+/turf/simulated/floor/beach/water,
+/area/awaymission/zoo)
+"vA" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/grass,
+/area/awaymission/zoo)
+"vB" = (
+/obj/effect/blocker,
+/turf/simulated/wall/r_wall,
+/area/awaymission/zoo)
+"vC" = (
+/obj/effect/blocker,
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/awaymission/zoo)
+"vD" = (
+/obj/structure/grille{
+ name = "mass ventilation"
+ },
+/obj/effect/blocker,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vE" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/zoo)
+"vF" = (
+/obj/structure/grille{
+ name = "mass ventilation"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"vG" = (
+/turf/simulated/wall/durasteel,
+/area/awaymission/zoo)
+"vH" = (
+/obj/structure/sign/redcross,
+/turf/simulated/wall/durasteel,
+/area/awaymission/zoo)
+"vI" = (
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"vJ" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vK" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vL" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ layer = 2.8;
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/fire{
+ layer = 2.9;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = -2
+ },
+/obj/item/weapon/reagent_containers/blood/empty,
+/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/structure/closet/medical_wall{
+ pixel_y = 32
+ },
+/obj/item/weapon/storage/firstaid/combat,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vM" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vN" = (
+/obj/machinery/sleep_console{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vO" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vP" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vQ" = (
+/obj/structure/curtain/open/privacy,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vR" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vS" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/mask/surgical,
+/obj/item/weapon/surgical/retractor{
+ pixel_x = 0;
+ pixel_y = 6
+ },
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/surgical/surgicaldrill,
+/obj/item/weapon/surgical/circular_saw,
+/obj/item/stack/nanopaste,
+/obj/item/weapon/surgical/hemostat{
+ pixel_y = 4
+ },
+/obj/item/weapon/surgical/cautery{
+ pixel_y = 4
+ },
+/obj/item/weapon/surgical/FixOVein{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/surgical/bonegel{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vT" = (
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"vU" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"vV" = (
+/obj/machinery/computer,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"vW" = (
+/obj/structure/closet,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"vX" = (
+/obj/structure/closet,
+/obj/item/clothing/under/captain_fly,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"vY" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper/zoo/pirate/haveyouseen,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"vZ" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wa" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wb" = (
+/obj/machinery/shield_gen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wc" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wd" = (
+/obj/machinery/shieldgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"we" = (
+/obj/machinery/shieldgen,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wf" = (
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/landmark/loot_spawn,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wh" = (
+/obj/machinery/power/smes/magical{
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
+ name = "power storage unit"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wi" = (
+/obj/structure/symbol/lo{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"wj" = (
+/obj/machinery/door/window/brigdoor/southleft,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/random/weapon,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wk" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/machinery/door/window/brigdoor/southright,
+/obj/random/weapon,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wl" = (
+/obj/structure/closet/secure_closet/security,
+/obj/random/handgun,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wm" = (
+/obj/machinery/door/window/brigdoor/southright,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/random/weapon,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wn" = (
+/obj/structure/table/rack,
+/obj/random/action_figure,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wo" = (
+/obj/structure/table/rack,
+/obj/random/plushie,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wp" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wq" = (
+/obj/machinery/door/airlock/glass_medical,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"wr" = (
+/turf/simulated/floor/tiled/red,
+/area/awaymission/zoo)
+"ws" = (
+/obj/machinery/door/airlock/medical,
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"wt" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EMPLOYEES ONLY'.";
+ name = "EMPLOYEES ONLY";
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"wu" = (
+/obj/structure/symbol/gu{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"wv" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"ww" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper/zoo/pirate/warning,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wx" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/durasteel,
+/area/awaymission/zoo)
+"wy" = (
+/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wz" = (
+/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wA" = (
+/obj/structure/symbol/pr{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"wB" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "lost and found"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wC" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/tiled/red,
+/area/awaymission/zoo)
+"wD" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"wE" = (
+/obj/machinery/door/airlock/command,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wF" = (
+/obj/effect/landmark/away,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wG" = (
+/obj/structure/grille{
+ name = "mass ventilation"
+ },
+/turf/unsimulated/wall/planetary/normal,
+/area/awaymission/zoo)
+"wH" = (
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wI" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wJ" = (
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wK" = (
+/obj/machinery/door/airlock/security{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Security";
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wL" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EMPLOYEES ONLY'.";
+ name = "EMPLOYEES ONLY";
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"wM" = (
+/obj/structure/symbol/gu{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"wN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/floodlight,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/emitter,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wP" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wQ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/under/rank/engineer/skirt,
+/obj/structure/closet/crate/mimic/guaranteed,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wR" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"wS" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wT" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/landmark/loot_spawn,
+/obj/structure/symbol/da{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"wU" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/awaymission/zoo)
+"wV" = (
+/obj/structure/coatrack,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wW" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/item/weapon/paper/zoo,
+/obj/item/weapon/paper/zoo,
+/obj/item/weapon/paper/zoo,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wX" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/item/weapon/paper/zoo,
+/obj/item/weapon/paper/zoo,
+/obj/item/weapon/paper/zoo,
+/obj/item/weapon/paper/zoo/pirate/nebula,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"wY" = (
+/obj/structure/symbol/da{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/awaymission/zoo)
+"wZ" = (
+/obj/machinery/floodlight,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"xa" = (
+/obj/machinery/power/emitter,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"xb" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/awaymission/zoo)
+"xc" = (
+/obj/structure/closet/crate/solar,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/cell/crap,
+/obj/item/weapon/cell/crap,
+/obj/item/weapon/cell/crap,
+/turf/simulated/floor,
+/area/awaymission/zoo)
+"xd" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"xe" = (
+/obj/machinery/vending/engivend,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"xf" = (
+/obj/machinery/door/window/brigdoor/northleft,
+/obj/structure/window/reinforced{
+ dir = 2;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/random/ammo_all,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"xg" = (
+/obj/machinery/door/window/brigdoor/northright,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 2;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/random/ammo_all,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"xh" = (
+/obj/machinery/door/window/brigdoor/northleft,
+/obj/structure/window/reinforced{
+ dir = 2;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/random/weapon,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"xi" = (
+/obj/machinery/door/window/brigdoor/northright,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 2;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/random/weapon,
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"xj" = (
+/obj/effect/landmark/loot_spawn{
+ live_cargo = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/awaymission/zoo)
+"xk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xl" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/machinery/power/solar/fake,
+/turf/simulated/floor/airless{
+ icon_state = "solarpanel"
+ },
+/area/awaymission/zoo/solars)
+"xm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xt" = (
+/obj/structure/cable,
+/obj/machinery/power/solar/fake,
+/turf/simulated/floor/airless{
+ icon_state = "solarpanel"
+ },
+/area/awaymission/zoo/solars)
+"xu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+"xw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/airless,
+/area/awaymission/zoo/solars)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ad
+ad
+dv
+dv
+dv
+dv
+ad
+ad
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+bp
+dw
+dU
+dU
+dw
+bp
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+bp
+bp
+bp
+dV
+dV
+bp
+bp
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+jk
+jl
+jA
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jk
+jl
+jA
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ad
+al
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ae
+aj
+am
+ad
+ad
+bp
+bp
+cI
+dh
+dw
+bp
+bp
+bp
+bp
+ao
+al
+al
+ad
+ad
+ae
+aj
+am
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aJ
+aU
+aU
+ad
+bp
+bp
+bp
+cJ
+di
+bp
+bp
+bp
+bp
+bp
+ao
+al
+al
+fJ
+ad
+af
+ag
+af
+ad
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aK
+aV
+aU
+bh
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ad
+al
+fz
+fJ
+ad
+gb
+ag
+ag
+ad
+aa
+aa
+hh
+ho
+hD
+hD
+hq
+hq
+hq
+hq
+hD
+hD
+ho
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jm
+ka
+jP
+jp
+jm
+ka
+jP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+ad
+bp
+bp
+bp
+cK
+bp
+bp
+bp
+bp
+bp
+bp
+ad
+al
+al
+al
+ad
+ad
+ak
+ad
+ad
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+jB
+jC
+kb
+jE
+jp
+jH
+kb
+mg
+jF
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aw
+aC
+al
+ao
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ad
+al
+al
+al
+ao
+al
+aC
+gE
+ad
+aa
+aa
+hj
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+jm
+jC
+jN
+kc
+jp
+jp
+jp
+kc
+jo
+mg
+jP
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+oS
+oi
+gP
+no
+oS
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+sm
+oi
+gP
+no
+sm
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+ub
+oi
+gP
+no
+ub
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+vg
+oi
+gP
+no
+vg
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aL
+al
+ba
+ad
+ad
+ad
+ad
+ad
+ad
+dx
+ad
+ad
+dx
+ad
+ad
+ad
+ad
+ad
+ad
+aB
+al
+gF
+ad
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+jc
+hq
+hq
+hq
+jn
+jD
+jO
+kd
+kT
+jp
+jO
+kd
+kT
+jn
+jD
+hq
+hq
+hq
+hq
+gP
+np
+nM
+np
+np
+np
+oT
+np
+np
+np
+oT
+np
+np
+pV
+pV
+qp
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+nT
+mG
+mI
+oH
+mG
+nC
+pq
+ol
+pC
+ok
+mI
+mZ
+ny
+mG
+ow
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+rY
+tO
+rY
+tm
+rY
+mD
+mD
+rY
+rY
+uk
+rY
+rY
+rY
+rY
+rY
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+jI
+jI
+na
+mI
+jI
+mR
+mI
+na
+mI
+nX
+jI
+jI
+nd
+qa
+ne
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aB
+al
+ba
+ad
+bq
+br
+br
+br
+dj
+br
+br
+br
+br
+dj
+br
+br
+br
+br
+ad
+aB
+al
+al
+aW
+gQ
+hc
+gQ
+hq
+hq
+hq
+hE
+hE
+hE
+hE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jo
+jE
+jp
+ke
+jp
+jp
+jp
+ke
+jp
+jH
+jN
+hq
+hq
+hq
+hq
+kU
+nq
+nN
+np
+ov
+oE
+oT
+np
+np
+oE
+oT
+np
+pO
+pW
+qh
+np
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+na
+na
+rZ
+mI
+mG
+pi
+mG
+mS
+ol
+mI
+oH
+ol
+ol
+ob
+mI
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rY
+tK
+mD
+mD
+rY
+rY
+rY
+uk
+rY
+mD
+rY
+tm
+rY
+tL
+tK
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+ns
+ns
+oy
+va
+oZ
+mH
+mI
+na
+oW
+nz
+jI
+jI
+nd
+ns
+nZ
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aL
+al
+bb
+ad
+br
+bN
+br
+br
+br
+br
+br
+br
+ez
+br
+br
+br
+br
+fK
+ad
+gc
+al
+gF
+aN
+gP
+hb
+gP
+hq
+hq
+hq
+hn
+hC
+hC
+hI
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jp
+jp
+jp
+jp
+jp
+lk
+jp
+jp
+jp
+jp
+jp
+hq
+hq
+hq
+hq
+mX
+np
+nO
+np
+np
+np
+oT
+np
+np
+np
+oT
+np
+pP
+pX
+qi
+np
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+jI
+nb
+nT
+ns
+ns
+ns
+pr
+mI
+ol
+ol
+pS
+ns
+pD
+nd
+mI
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+mD
+rY
+rY
+tO
+rY
+mD
+rY
+rY
+mD
+rY
+mD
+mD
+mD
+rY
+mD
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+mH
+op
+na
+ok
+ol
+oG
+mI
+vo
+mG
+vs
+jI
+nb
+pR
+nf
+ne
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aB
+al
+ba
+ad
+bs
+bs
+bs
+cL
+br
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+br
+br
+ad
+aB
+al
+al
+aW
+gQ
+hc
+gQ
+hq
+hq
+hq
+hD
+hD
+hD
+hD
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jm
+jF
+jp
+kc
+jp
+jp
+jp
+kc
+jp
+jB
+jP
+hq
+hq
+hq
+hq
+kU
+np
+np
+np
+np
+np
+np
+np
+np
+np
+np
+np
+pQ
+pY
+qj
+np
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+jI
+jI
+na
+na
+oW
+mI
+ps
+mG
+om
+sP
+ns
+oW
+ol
+oG
+nx
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rY
+rY
+tK
+rY
+rY
+mD
+mD
+mD
+tt
+rY
+rY
+rY
+tK
+rY
+rY
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+nd
+nd
+nQ
+ol
+ve
+mI
+mS
+na
+nz
+jI
+jI
+mI
+vt
+qb
+ne
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(21,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aL
+al
+ba
+ad
+bt
+bO
+bO
+cM
+br
+dl
+dW
+dW
+eA
+dW
+al
+dl
+br
+br
+ad
+aB
+al
+gF
+bd
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hq
+hq
+hq
+hq
+jn
+jD
+jO
+kd
+kT
+jp
+jO
+kd
+kT
+jn
+jD
+hq
+hq
+hq
+hq
+gP
+np
+np
+np
+np
+np
+np
+np
+np
+np
+np
+np
+np
+pZ
+pZ
+pZ
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+nU
+jI
+mI
+oI
+na
+nB
+ns
+ns
+ns
+ns
+ns
+ns
+ql
+pw
+nR
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+rY
+tP
+rY
+mD
+mD
+rY
+tK
+rY
+rY
+mD
+tE
+rY
+rY
+rY
+rY
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+mG
+mH
+mG
+mG
+ny
+pl
+nB
+nd
+nc
+ng
+pT
+ny
+nR
+qq
+mG
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(22,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aM
+al
+bc
+ad
+bu
+bO
+cj
+cM
+br
+dl
+dX
+dW
+dW
+al
+eE
+dl
+br
+br
+ad
+aM
+gn
+bc
+ad
+aa
+aa
+hh
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+jo
+jG
+jP
+ke
+jp
+jp
+jp
+ke
+jm
+mh
+jN
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+oF
+oS
+oi
+gP
+no
+oS
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+sm
+oi
+gP
+no
+sm
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+ub
+oi
+gP
+no
+ub
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+vg
+oi
+gP
+no
+vg
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(23,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aN
+aW
+bd
+ad
+bv
+bO
+bO
+cN
+br
+dl
+dY
+al
+eB
+eg
+al
+dl
+br
+br
+ad
+ad
+ad
+ad
+ad
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+jH
+jG
+ka
+jF
+jp
+jB
+ka
+mh
+jE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(24,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+bt
+bP
+bO
+cM
+br
+dl
+dZ
+dZ
+eC
+dZ
+dZ
+dl
+br
+br
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+ho
+hE
+hE
+hq
+hq
+hq
+hq
+hE
+hE
+ho
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jo
+kb
+jN
+jp
+jo
+kb
+jN
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(25,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+bw
+bw
+bw
+cO
+br
+dy
+al
+al
+al
+eP
+al
+dy
+br
+br
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(26,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+br
+br
+br
+br
+br
+br
+br
+br
+br
+br
+br
+ft
+br
+br
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nP
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nP
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+rR
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rR
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+tQ
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tQ
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+uV
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+uV
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+br
+br
+br
+br
+br
+br
+ea
+br
+br
+br
+br
+br
+br
+fL
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+rx
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+nm
+nm
+nm
+nm
+oe
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+oC
+nm
+oq
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+ad
+ck
+ad
+ad
+br
+br
+br
+br
+ad
+ad
+ck
+ad
+ad
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+rx
+rx
+ry
+rN
+ry
+ry
+ry
+ry
+rx
+ry
+ry
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+mD
+mD
+mD
+mD
+tE
+mD
+tm
+mD
+mD
+mD
+mD
+mD
+mD
+tm
+mD
+mD
+mD
+mD
+mD
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+nm
+os
+nE
+nm
+nm
+nm
+oq
+nm
+nm
+nm
+nm
+nm
+pp
+nm
+nm
+nm
+nm
+nm
+nm
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+al
+ad
+bx
+bQ
+cl
+br
+br
+br
+br
+br
+br
+br
+br
+br
+br
+br
+ad
+al
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+ll
+kU
+gP
+mi
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rx
+rD
+rB
+rz
+rz
+rz
+rz
+rz
+rz
+sy
+rz
+rz
+rM
+ry
+ry
+ry
+rS
+rx
+ry
+ry
+ry
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+rY
+tK
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+nm
+nm
+nm
+nm
+oq
+nm
+nm
+oq
+nm
+nF
+oC
+nm
+uT
+pp
+nm
+uS
+nm
+nm
+oe
+nm
+nm
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+wq
+vH
+wq
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+al
+al
+ad
+by
+bQ
+cl
+br
+br
+br
+br
+br
+br
+br
+br
+br
+br
+fK
+ad
+al
+al
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+jM
+jM
+jM
+jM
+jM
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+qH
+hc
+re
+hc
+rs
+jQ
+hq
+hq
+hq
+jQ
+ry
+rB
+rz
+rz
+rF
+rA
+rA
+rE
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+rB
+rz
+rz
+rz
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+rY
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+mD
+rY
+mD
+mD
+tt
+rY
+rY
+rY
+rY
+rY
+rY
+rY
+rY
+rY
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+ns
+ns
+ns
+pR
+jI
+jQ
+hq
+hq
+hq
+jQ
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+uS
+nm
+oq
+nm
+nm
+oq
+nm
+nm
+nF
+nm
+nm
+nm
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+vJ
+jM
+jM
+jM
+wU
+jQ
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(31,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+al
+al
+al
+ad
+bz
+bQ
+cm
+br
+br
+br
+br
+br
+br
+br
+br
+br
+br
+br
+ad
+al
+al
+al
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+jM
+jM
+jM
+jM
+jM
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jR
+hq
+hq
+hq
+jR
+qH
+hc
+re
+hc
+rs
+jR
+hq
+hq
+hq
+jR
+rz
+rz
+rz
+rK
+ry
+ry
+rD
+rx
+rA
+sz
+rA
+sn
+sQ
+rz
+rz
+rz
+rz
+rz
+rz
+rF
+rA
+jR
+hq
+hq
+hq
+jR
+rY
+mD
+rY
+rY
+rY
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+rY
+mD
+rY
+rY
+rY
+rY
+rY
+rY
+mD
+rY
+tm
+rY
+rY
+tK
+rY
+rY
+mD
+mD
+jR
+hq
+hq
+hq
+jR
+om
+ol
+ns
+jI
+jI
+jR
+hq
+hq
+hq
+jR
+nm
+oD
+uS
+oe
+nm
+uT
+oq
+nm
+nm
+nm
+uS
+nm
+nm
+nm
+os
+nm
+vc
+nm
+nm
+nm
+nm
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+vJ
+jM
+jM
+jM
+wU
+jR
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(32,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+al
+al
+al
+al
+ad
+bA
+bA
+cn
+br
+dk
+dz
+eb
+br
+br
+dk
+fc
+fu
+br
+br
+ad
+al
+al
+al
+al
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+jM
+jM
+jM
+kg
+kg
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+qH
+qO
+re
+rk
+rs
+jS
+hq
+hq
+hq
+jS
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+rx
+rD
+rx
+sb
+rz
+rz
+rz
+rF
+rA
+rA
+rA
+rA
+rx
+rx
+jS
+hq
+hq
+hq
+jS
+rY
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+tL
+mD
+mD
+mD
+mD
+mD
+rY
+mD
+mD
+mD
+mD
+mD
+rY
+rY
+rY
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+uu
+uB
+uw
+uw
+uw
+jS
+hq
+hq
+hq
+jS
+nm
+nm
+nm
+uU
+nm
+nm
+nm
+nm
+uU
+nm
+os
+nm
+oC
+nm
+nm
+uU
+nm
+nF
+nm
+pp
+nm
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+vJ
+jM
+jM
+jM
+wU
+jS
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(33,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ap
+al
+al
+al
+be
+ad
+br
+br
+br
+br
+dl
+dA
+dl
+br
+br
+dl
+fd
+dl
+br
+br
+ad
+al
+al
+al
+al
+al
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kf
+jM
+jM
+kg
+jM
+jM
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+qH
+hc
+re
+qQ
+rs
+gP
+hq
+hq
+hq
+gP
+rA
+rA
+rI
+rA
+rE
+rz
+rz
+rG
+rx
+ry
+rB
+rz
+rF
+rA
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+gP
+hq
+hq
+hq
+gP
+rY
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+mD
+tK
+mD
+rY
+mD
+mD
+mD
+mD
+rY
+rY
+rY
+rY
+rY
+rY
+mD
+rY
+tL
+rY
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+ns
+uu
+pR
+uw
+uB
+gP
+hq
+hq
+hq
+gP
+nm
+nm
+nm
+nm
+pp
+nm
+nm
+os
+nm
+oD
+nm
+nm
+nm
+nm
+nm
+nm
+oD
+os
+uS
+oC
+nm
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vH
+vJ
+jM
+jM
+jM
+wU
+vH
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(34,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+al
+al
+al
+al
+al
+bi
+br
+br
+br
+br
+dl
+dz
+dl
+br
+br
+dl
+fe
+dl
+br
+fK
+ad
+al
+al
+al
+al
+al
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kg
+jM
+jM
+lD
+jM
+mj
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+qH
+qP
+re
+hc
+rs
+jQ
+hq
+hq
+hq
+jQ
+rx
+rx
+rx
+rx
+rx
+sa
+rz
+rM
+rB
+rz
+rz
+rz
+rG
+rx
+sM
+rx
+rx
+rx
+rx
+ry
+ry
+jQ
+hq
+hq
+hq
+jQ
+mD
+tm
+mD
+tn
+rY
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+tm
+mD
+rY
+rY
+rY
+mD
+mD
+rY
+tE
+rY
+rY
+rY
+rY
+mD
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+ns
+ns
+ol
+jI
+uw
+jQ
+hq
+hq
+hq
+jQ
+nm
+nm
+uT
+nm
+nm
+nF
+nm
+uS
+nm
+uS
+oe
+uU
+pp
+nm
+nm
+nF
+nm
+vc
+nm
+uU
+nm
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+jM
+jM
+wr
+jM
+jM
+jQ
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(35,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aq
+al
+al
+al
+al
+bi
+br
+br
+br
+br
+dl
+dz
+dl
+br
+br
+dl
+fe
+dl
+br
+br
+ad
+al
+al
+al
+al
+al
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+mt
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mt
+hq
+hq
+hq
+qA
+qH
+qQ
+re
+qR
+rs
+qA
+hq
+hq
+hq
+rt
+rx
+rx
+rx
+rL
+rx
+sb
+rz
+rz
+rz
+rz
+rF
+rA
+rx
+rx
+rx
+rx
+rx
+rx
+rB
+rz
+rz
+rt
+hq
+hq
+hq
+tb
+mD
+rY
+rY
+rY
+rY
+tb
+hq
+hq
+hq
+tG
+mD
+mD
+mD
+mD
+rY
+rY
+rY
+rY
+uc
+rY
+rY
+rY
+mD
+mD
+rY
+rY
+rY
+rY
+mD
+mD
+mD
+tG
+hq
+hq
+hq
+uq
+uv
+uu
+uu
+pq
+uw
+uq
+hq
+hq
+hq
+uO
+nm
+nm
+oq
+nm
+uU
+oC
+nm
+nm
+nm
+nm
+nm
+vf
+oq
+vc
+nm
+os
+nE
+nm
+nm
+uU
+nm
+uO
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+jM
+wr
+wC
+wr
+jM
+jR
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(36,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ar
+al
+al
+al
+al
+bi
+br
+br
+br
+br
+dl
+dz
+dl
+en
+br
+dl
+fe
+dl
+br
+br
+ad
+al
+al
+al
+al
+al
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kg
+jM
+jM
+lD
+jM
+mj
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+oU
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+qH
+hc
+re
+qR
+rs
+jS
+hq
+hq
+hq
+jS
+rx
+rx
+rD
+rx
+rx
+rx
+rA
+rA
+rA
+rA
+rx
+rx
+rD
+rx
+rS
+rx
+rx
+rB
+rz
+rz
+rF
+jS
+hq
+hq
+hq
+jS
+mD
+tn
+rY
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+mD
+rY
+rY
+rY
+rY
+rY
+rY
+rY
+mD
+mD
+tm
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+ns
+uC
+uE
+uB
+ol
+jS
+hq
+hq
+hq
+jS
+nm
+nm
+nm
+nm
+oq
+nm
+uT
+uU
+nm
+uT
+oD
+nm
+nm
+nm
+nm
+nm
+nm
+uS
+nm
+nm
+nm
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+jM
+jM
+wr
+jM
+jM
+jS
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(37,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+as
+al
+ap
+al
+bf
+ad
+bB
+bR
+br
+br
+dl
+dz
+dl
+br
+br
+dl
+fe
+dl
+br
+br
+ad
+al
+al
+al
+al
+al
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+oU
+oU
+oU
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+qH
+qR
+re
+rl
+rs
+gP
+hq
+hq
+hq
+gP
+ry
+ry
+ry
+rx
+rx
+rx
+rx
+rx
+ry
+ry
+sF
+ry
+ry
+ry
+rx
+rx
+rB
+rz
+rz
+rF
+rx
+gP
+hq
+hq
+hq
+gP
+mD
+rY
+rY
+rY
+rY
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+tK
+mD
+rY
+rY
+rY
+rY
+rY
+rY
+mD
+rY
+mD
+rY
+rY
+mD
+rY
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+uu
+ns
+uu
+uK
+uB
+gP
+hq
+hq
+hq
+gP
+nm
+nm
+uS
+nm
+nF
+nm
+vb
+nm
+nm
+nm
+nm
+uU
+uT
+nm
+nm
+vb
+os
+nm
+nm
+uT
+nm
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vK
+vK
+vK
+vK
+jM
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(38,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+at
+al
+al
+al
+bg
+ad
+bC
+bR
+br
+br
+dl
+dB
+dl
+br
+br
+dl
+dB
+dl
+br
+br
+ad
+al
+al
+al
+al
+gR
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+oU
+oU
+oU
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+kU
+hq
+hq
+hq
+jQ
+qH
+qS
+re
+rm
+rs
+jQ
+hq
+hq
+hq
+jQ
+rz
+rz
+rz
+rM
+ry
+ry
+rN
+rB
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+rB
+rz
+rz
+rF
+rx
+rx
+kU
+hq
+hq
+hq
+jQ
+rY
+rY
+ts
+mD
+rY
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+rY
+rY
+mD
+mD
+rY
+mD
+mD
+mD
+mD
+rY
+rY
+tE
+mD
+mD
+kU
+hq
+hq
+hq
+jQ
+uw
+uB
+uD
+uw
+jI
+jQ
+hq
+hq
+hq
+jQ
+nm
+nm
+nm
+nm
+nm
+nE
+uU
+vc
+nm
+nm
+nm
+nm
+nm
+uS
+os
+uT
+nm
+nm
+uU
+uS
+nm
+kU
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vG
+vL
+jM
+wD
+vK
+jM
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+al
+al
+aO
+al
+al
+ad
+bD
+br
+co
+br
+dl
+dC
+dl
+br
+br
+dl
+dC
+dl
+br
+fK
+ad
+gd
+al
+al
+al
+gR
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kh
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+oU
+oU
+oU
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mX
+hq
+hq
+hq
+jR
+qI
+qR
+re
+rn
+rs
+jR
+hq
+hq
+hq
+jR
+rA
+rE
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rF
+rI
+rA
+rE
+rz
+rz
+rz
+rz
+rF
+rx
+rx
+rx
+mX
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+mD
+mD
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+rY
+rY
+rY
+rY
+rY
+mD
+rY
+rY
+mD
+mD
+mX
+hq
+hq
+hq
+jR
+ux
+uD
+uI
+uE
+uB
+jR
+hq
+hq
+hq
+jR
+nm
+oq
+uU
+nm
+os
+nm
+nm
+nm
+pp
+nm
+vf
+nm
+nm
+nm
+uT
+nm
+nF
+nm
+nm
+nm
+nm
+mX
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+vG
+vG
+ws
+vG
+vG
+ws
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(40,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+au
+al
+al
+al
+bf
+ad
+bB
+bR
+br
+br
+br
+dD
+br
+br
+br
+br
+dD
+br
+br
+br
+ad
+ge
+al
+al
+al
+gR
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+oU
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+kU
+hq
+hq
+hq
+jS
+qH
+qT
+re
+qR
+rs
+jS
+hq
+hq
+hq
+jS
+rx
+rD
+rA
+rA
+rA
+rI
+rA
+rA
+sn
+ry
+ry
+ry
+rx
+rA
+rA
+rA
+rA
+rx
+rx
+rD
+rx
+kU
+hq
+hq
+hq
+jS
+rY
+rY
+tm
+rY
+rY
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+rY
+rY
+rY
+tm
+rY
+rY
+rY
+ui
+rY
+rY
+rY
+rY
+rY
+mD
+rY
+rY
+rY
+mD
+mD
+kU
+hq
+hq
+hq
+jS
+uu
+om
+uu
+uL
+uB
+jS
+hq
+hq
+hq
+jS
+nm
+nm
+nm
+nm
+nF
+nm
+nm
+nF
+nm
+nm
+uT
+oC
+nm
+uU
+nm
+nm
+vc
+nm
+nm
+nm
+nm
+kU
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vG
+vM
+jM
+vM
+jM
+jM
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(41,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+av
+al
+al
+al
+bg
+ad
+bE
+br
+br
+br
+br
+dE
+ec
+br
+br
+eQ
+ff
+br
+br
+br
+ad
+gd
+al
+al
+al
+gS
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+qH
+hc
+re
+qR
+rs
+gP
+hq
+hq
+hq
+gP
+rx
+ry
+ry
+rx
+rD
+rx
+rx
+sb
+rz
+rz
+rz
+rz
+rM
+rD
+rx
+rx
+rS
+rx
+rx
+rx
+rD
+nk
+hq
+hq
+hq
+gP
+mD
+mD
+rY
+rY
+mD
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+rY
+rY
+mD
+rY
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+mI
+uE
+mG
+mG
+ns
+gP
+hq
+hq
+hq
+gP
+nm
+nm
+oq
+nm
+pp
+nm
+uT
+nm
+os
+oq
+oq
+nm
+oq
+nm
+nm
+oq
+nm
+uT
+oq
+nm
+nm
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vN
+jM
+vN
+jM
+jM
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(42,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ak
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ed
+br
+br
+dD
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ak
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+qH
+hc
+re
+qQ
+rs
+jQ
+hq
+hq
+hq
+jQ
+rB
+rz
+rz
+rM
+rS
+rx
+rN
+rB
+rz
+rF
+rE
+rz
+rz
+rM
+ry
+rx
+rx
+rx
+rx
+rx
+rx
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+tn
+tB
+mD
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+tm
+mD
+mD
+rY
+tB
+tP
+rY
+rY
+rY
+ui
+tK
+rY
+rY
+rY
+rY
+tt
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+uy
+uE
+om
+uu
+uu
+jQ
+hq
+hq
+hq
+jQ
+nm
+nm
+nm
+uS
+nm
+oe
+nm
+vf
+uU
+nm
+nm
+nm
+vc
+nm
+nm
+oq
+uT
+nm
+nm
+nm
+nm
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+vO
+jM
+vO
+jM
+jM
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(43,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ad
+ae
+aj
+am
+ad
+aw
+aC
+aC
+aC
+aC
+bj
+ad
+bS
+cp
+bT
+bT
+bT
+ee
+bT
+bT
+ee
+bT
+cp
+fA
+ad
+fP
+gf
+fQ
+fP
+fP
+gT
+ad
+ae
+aj
+am
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+mt
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mt
+hq
+hq
+hq
+qA
+qH
+qU
+re
+hc
+rs
+qA
+hq
+hq
+hq
+rt
+rz
+rz
+rz
+rz
+rM
+rB
+rz
+rz
+rz
+rG
+rx
+rE
+rz
+rz
+rz
+rM
+rx
+rD
+rx
+ta
+rx
+rt
+hq
+hq
+hq
+tb
+mD
+rY
+rY
+mD
+mD
+tb
+hq
+hq
+hq
+tG
+mD
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+rY
+rY
+mD
+rY
+rY
+tL
+rY
+rY
+rY
+rY
+mD
+mD
+mD
+tG
+hq
+hq
+hq
+uq
+uz
+nd
+mI
+uw
+nU
+uq
+hq
+hq
+hq
+uO
+nm
+oq
+nm
+nm
+nm
+nm
+uT
+nm
+nm
+nm
+os
+os
+nm
+nm
+uU
+uS
+nm
+oe
+nm
+nm
+oq
+uO
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+vP
+jM
+vP
+jM
+jM
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(44,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ad
+af
+ag
+af
+ad
+ax
+al
+al
+al
+al
+ba
+ad
+bS
+bT
+cP
+bT
+bT
+ee
+bT
+bT
+ee
+bT
+bT
+bT
+ad
+fP
+fP
+fP
+fP
+fP
+gU
+ad
+af
+ag
+af
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+qH
+qV
+re
+hc
+rs
+jS
+hq
+hq
+hq
+jS
+rz
+rF
+rE
+rz
+rz
+rz
+rz
+rF
+rA
+rx
+rx
+sM
+rA
+rE
+rz
+rz
+rM
+ry
+rx
+rx
+rx
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+tt
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+mD
+tt
+mD
+mD
+rY
+mD
+mD
+rY
+rY
+mD
+rY
+mD
+mD
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+mI
+ol
+uy
+mI
+mI
+jS
+hq
+hq
+hq
+jS
+nm
+nF
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+oq
+nm
+nm
+nm
+os
+nm
+nm
+nm
+vc
+uS
+uU
+nm
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+jM
+jM
+jM
+jM
+jM
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(45,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ad
+ag
+ag
+an
+ad
+ay
+al
+al
+al
+aH
+bb
+ad
+bT
+bT
+bT
+bT
+dF
+ef
+eo
+eD
+ef
+fg
+bT
+bT
+fM
+fP
+fP
+fP
+fP
+fP
+gV
+ad
+gb
+ag
+ag
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kf
+jM
+jM
+kg
+jM
+jM
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+qH
+hc
+re
+hc
+rs
+gP
+hq
+hq
+hq
+gP
+rz
+rG
+rx
+rE
+rz
+rz
+rz
+rM
+so
+ry
+rx
+rx
+rD
+rx
+rE
+rz
+rz
+rz
+rM
+rx
+rx
+gP
+hq
+hq
+hq
+gP
+mD
+rY
+rY
+rY
+rY
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+rY
+rY
+rY
+rY
+mD
+mD
+rY
+mD
+mD
+mD
+rY
+mD
+mD
+mD
+rY
+rY
+mD
+gP
+hq
+hq
+hq
+gP
+uu
+ns
+uw
+pA
+uu
+gP
+hq
+hq
+hq
+gP
+nm
+nm
+oC
+nF
+nm
+nm
+uU
+uS
+uT
+nm
+nm
+nm
+uU
+uS
+nm
+nm
+nm
+nm
+pp
+nm
+nm
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vQ
+vQ
+vQ
+vQ
+vQ
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(46,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ad
+ad
+ak
+ad
+ad
+az
+aD
+aP
+al
+al
+bk
+ad
+bU
+ad
+ad
+bT
+dG
+al
+al
+eg
+eR
+fh
+bT
+bT
+ad
+fP
+fP
+go
+fP
+gJ
+fP
+ad
+ad
+ak
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+jM
+jM
+jM
+kg
+lL
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+qH
+hc
+re
+ro
+rs
+jQ
+hq
+hq
+hq
+jQ
+rA
+rx
+rD
+rx
+rA
+rE
+rz
+rz
+rz
+rz
+rM
+ry
+rx
+ry
+ry
+sQ
+rz
+rz
+rz
+rM
+rx
+jQ
+hq
+hq
+hq
+jQ
+mD
+rY
+rY
+mD
+tE
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+rY
+rY
+mD
+tE
+rY
+rY
+rY
+mD
+mD
+mD
+rY
+rY
+tK
+rY
+rY
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+mI
+jI
+jI
+uM
+na
+jQ
+hq
+hq
+hq
+jQ
+nm
+nm
+uT
+nm
+nm
+uT
+nm
+pp
+nm
+nF
+nm
+nm
+nm
+nm
+nm
+uT
+oD
+uU
+uS
+nm
+oD
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+vR
+jM
+jM
+jM
+vR
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(47,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ad
+ah
+al
+al
+ad
+aA
+al
+al
+al
+al
+ba
+ad
+bV
+cq
+ad
+bT
+dG
+eg
+al
+eE
+al
+fh
+bT
+bT
+ad
+fP
+fP
+fP
+fP
+fP
+fP
+ad
+hk
+al
+ah
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+jM
+jM
+jM
+jM
+jM
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+mD
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+jR
+hq
+hq
+hq
+jR
+qH
+qQ
+re
+rp
+rs
+jR
+hq
+hq
+hq
+jR
+rx
+rD
+rx
+rN
+ry
+rB
+rz
+rz
+rz
+rz
+rz
+rz
+sy
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+rY
+rY
+mD
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+rY
+mD
+mD
+rY
+rY
+rY
+mD
+mD
+mD
+mD
+mD
+mD
+jR
+hq
+hq
+hq
+jR
+uu
+jI
+jI
+mI
+na
+jR
+hq
+hq
+hq
+jR
+nm
+nm
+uS
+uT
+nm
+nm
+vc
+nm
+nm
+nm
+oq
+nm
+uS
+nm
+nm
+nm
+nF
+nE
+uS
+nm
+nm
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+vS
+jM
+jM
+jM
+vS
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(48,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ad
+ad
+al
+al
+ao
+aB
+al
+al
+al
+al
+ba
+ad
+bW
+cr
+ad
+bT
+dH
+dZ
+ep
+ep
+eS
+fi
+bT
+bT
+fM
+fP
+fP
+gp
+fP
+go
+fP
+hd
+al
+hr
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+jM
+jM
+jM
+jM
+jM
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+qH
+qW
+re
+rq
+rs
+jS
+hq
+hq
+hq
+jS
+ry
+ry
+rB
+rz
+rz
+rz
+rz
+rF
+rA
+rA
+rE
+rz
+rz
+rz
+sW
+rz
+rz
+rz
+sW
+rz
+rz
+jS
+hq
+hq
+hq
+jS
+mD
+rY
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+rY
+mD
+rY
+mD
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+mD
+tm
+mD
+rY
+rY
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+ny
+pR
+jI
+uE
+uK
+jS
+hq
+hq
+hq
+jS
+nm
+nm
+nm
+nm
+nm
+nm
+uS
+uS
+nm
+nm
+uU
+nm
+nm
+nm
+uT
+nF
+nF
+nm
+nm
+nm
+nm
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+vT
+jM
+jM
+jM
+vT
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(49,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+ad
+ad
+ad
+al
+ad
+aB
+aE
+aQ
+aX
+al
+bl
+ad
+bV
+cs
+ad
+bT
+bT
+bT
+bT
+bT
+bT
+bT
+bT
+fB
+ad
+fQ
+fP
+fP
+fP
+fP
+fP
+ad
+hl
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+ll
+kU
+gP
+mi
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rz
+rz
+rz
+rz
+rF
+rA
+rA
+rx
+rx
+rD
+rx
+rA
+rA
+rI
+rx
+rA
+rA
+rA
+rx
+rA
+rA
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+rY
+mD
+mD
+mD
+mD
+mD
+mD
+rY
+tK
+mD
+rY
+rY
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+nm
+nm
+nm
+nm
+uT
+nm
+nm
+nm
+nm
+nE
+oD
+nm
+oq
+oC
+vc
+nm
+uS
+oq
+nm
+nm
+nm
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+ws
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(50,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+aB
+aF
+aR
+aY
+al
+bl
+ad
+bX
+ct
+ad
+dm
+bT
+bT
+bT
+bT
+dm
+bT
+fv
+fC
+ad
+fR
+fP
+go
+fP
+go
+fP
+ad
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+rA
+rA
+rA
+rD
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+rY
+mD
+mD
+mD
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+wt
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(51,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+aB
+aG
+aS
+aZ
+al
+bl
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+fS
+fP
+fP
+fP
+fP
+fP
+ad
+ad
+ad
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+rD
+rx
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+rx
+rD
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+nm
+nm
+nm
+nm
+nm
+uT
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+nm
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(52,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+aB
+al
+al
+al
+al
+bm
+ad
+bY
+cu
+cu
+dn
+dI
+eh
+eq
+eF
+dn
+cu
+cu
+cu
+ad
+fP
+fP
+fP
+ad
+gK
+ad
+ad
+ad
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nP
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nP
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+rR
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rR
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+tQ
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tQ
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+uV
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+uV
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(53,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aB
+aH
+al
+al
+al
+ba
+bF
+bO
+bO
+bO
+bO
+dJ
+bO
+bO
+bO
+eT
+bO
+bO
+bO
+ck
+fP
+fP
+fP
+ad
+gL
+gW
+ad
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(54,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+aI
+aT
+aT
+aT
+bc
+ad
+bO
+bO
+bO
+al
+al
+al
+al
+al
+al
+bO
+bO
+bO
+ad
+fT
+fP
+gq
+ad
+gM
+ad
+ad
+hh
+hs
+hD
+hD
+hq
+hq
+hq
+hq
+hD
+hD
+hs
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jq
+ki
+ki
+ki
+ki
+ki
+mk
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(55,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+bO
+bO
+al
+dK
+al
+al
+dK
+al
+fj
+bO
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+jq
+jI
+jI
+jI
+jI
+jI
+jI
+jI
+mk
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(56,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+bO
+bO
+al
+dL
+al
+al
+dL
+al
+bO
+bO
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+jq
+jI
+jT
+jI
+jU
+jI
+jI
+lM
+jI
+jI
+mk
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+oV
+oi
+gP
+no
+oV
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+sp
+oi
+gP
+no
+sp
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+ud
+oi
+gP
+no
+ud
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+vh
+oi
+gP
+no
+vh
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(57,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+cv
+cQ
+cv
+cv
+cv
+cv
+cv
+cv
+cQ
+fw
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hq
+hq
+hq
+hq
+jr
+jI
+jI
+jI
+jI
+jp
+jI
+jI
+jI
+jI
+mp
+hq
+hq
+hq
+hq
+gP
+jI
+na
+oj
+jI
+mR
+mI
+na
+mI
+nX
+jI
+jI
+nd
+qa
+ne
+nd
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+rO
+rP
+sc
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+nk
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+rY
+mD
+rY
+rY
+rY
+rY
+mD
+mD
+rY
+mD
+mD
+mD
+rY
+mD
+mD
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+nG
+uW
+uW
+og
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+qe
+qn
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(58,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ak
+ad
+ad
+ad
+ad
+ak
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+gX
+hc
+gX
+hq
+hq
+hq
+hE
+hE
+hE
+hE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jr
+jI
+jU
+jT
+jp
+lm
+lE
+jI
+lM
+jI
+mp
+hq
+hq
+hq
+hq
+kU
+ns
+nC
+mZ
+mT
+mH
+oj
+na
+mT
+nz
+pB
+nY
+nd
+ns
+nZ
+nd
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+tV
+rP
+rO
+rP
+rO
+rP
+rO
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rY
+mD
+rY
+rY
+mD
+tE
+rY
+rY
+rY
+mD
+mD
+mD
+rY
+rY
+tK
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+nI
+uX
+nI
+nG
+og
+ot
+vl
+qe
+uW
+uW
+og
+ot
+qe
+qn
+nI
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xu
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(59,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+cR
+ag
+ag
+ad
+ad
+ag
+ag
+ag
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hn
+hC
+hC
+hI
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+js
+jp
+jp
+jp
+jp
+ln
+jp
+jp
+jp
+jp
+mq
+hq
+hq
+hq
+hq
+mX
+ni
+na
+ok
+ol
+oG
+mI
+na
+mG
+jI
+jI
+jI
+pR
+nd
+ne
+nd
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+rP
+rP
+rP
+rP
+rP
+rP
+rP
+sG
+sN
+rP
+rP
+rP
+rP
+rP
+rP
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+mD
+mD
+mD
+rY
+rY
+tY
+tY
+ul
+tY
+tY
+rY
+rY
+rY
+mD
+mD
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+nI
+nI
+nI
+vd
+nG
+uW
+uW
+qn
+nI
+nJ
+nG
+uW
+qn
+nH
+nI
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xv
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(60,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+cS
+cS
+cS
+ad
+ad
+cS
+cS
+cS
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gX
+hc
+gX
+hq
+hq
+hq
+hD
+hD
+hD
+hD
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jr
+jI
+jI
+jI
+kV
+jp
+jp
+jI
+jI
+jI
+mp
+hq
+hq
+hq
+hq
+kU
+nd
+nQ
+ol
+ny
+mI
+mS
+ph
+nz
+jI
+nY
+mI
+mT
+qb
+ne
+nd
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rO
+rP
+rO
+rP
+rO
+rP
+sc
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+mD
+rY
+mD
+rY
+tY
+mD
+mD
+mD
+rY
+rY
+mD
+mD
+mD
+tm
+mD
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+nI
+nI
+qr
+nI
+nJ
+nI
+nI
+qr
+nH
+nI
+vd
+nI
+nI
+nJ
+nI
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xw
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(61,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+cT
+cT
+cT
+ad
+ad
+cT
+cT
+cT
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hq
+hq
+hq
+hq
+jr
+jI
+jI
+jI
+jI
+jp
+jI
+jI
+jI
+mo
+mp
+hq
+hq
+hq
+hq
+gP
+nt
+nR
+nR
+nd
+nd
+oM
+ny
+mI
+nx
+mI
+mT
+nC
+ns
+nx
+ny
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+nk
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+rO
+rP
+sc
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+rY
+mD
+rY
+mD
+mD
+mD
+mD
+mD
+mD
+rY
+tK
+mD
+rY
+rY
+mD
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+nI
+nI
+nI
+nI
+nI
+nI
+nI
+nI
+nI
+nI
+nI
+qr
+nI
+nI
+nI
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(62,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+jt
+jI
+jV
+jI
+jI
+jI
+jI
+jI
+jI
+jI
+ml
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+oV
+oi
+gP
+no
+oV
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+sp
+oi
+gP
+no
+sp
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+ud
+oi
+gP
+no
+ud
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+vh
+oi
+gP
+no
+vh
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(63,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+jt
+jI
+jI
+jI
+jI
+jI
+jI
+jI
+ml
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(64,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hs
+hE
+hE
+hq
+hq
+hq
+hq
+hE
+hE
+hs
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jt
+kj
+kj
+kj
+kj
+kj
+ml
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(65,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(66,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nS
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nS
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+rT
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rT
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+tR
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tR
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(67,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+mI
+mG
+mI
+mI
+ow
+mG
+mG
+mG
+mG
+mG
+ny
+ny
+ny
+mG
+qk
+mG
+oH
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+kE
+kE
+kE
+kE
+kF
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kL
+kE
+kD
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(68,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+jI
+mY
+nu
+na
+mI
+mI
+oH
+mG
+mG
+mG
+ny
+mG
+pJ
+mG
+mI
+mG
+mG
+mG
+mG
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+kE
+lK
+kG
+kE
+kE
+kE
+kD
+kE
+kE
+kE
+kE
+kE
+lf
+kE
+kE
+kE
+kE
+kE
+kE
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+kE
+kE
+kE
+kE
+kE
+kE
+hc
+hc
+hc
+kE
+kE
+kE
+kE
+kE
+kE
+hc
+hc
+kE
+kE
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+wu
+hq
+wL
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(69,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+lo
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+mG
+mI
+mI
+mG
+nT
+mG
+mI
+oH
+mG
+nC
+pq
+ol
+pC
+ok
+mI
+mZ
+ny
+mG
+ow
+mG
+mG
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+kD
+kE
+kE
+kD
+kE
+mV
+kL
+kE
+kE
+lf
+kE
+nj
+kE
+kE
+kF
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+hc
+hc
+kE
+kE
+kE
+kE
+vm
+uG
+kE
+kE
+kE
+kE
+kE
+kE
+hc
+vv
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+wE
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(70,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kk
+kW
+kW
+kW
+lN
+jQ
+hq
+hq
+hq
+jQ
+mG
+mG
+mG
+mI
+na
+na
+mI
+mI
+mG
+pi
+mG
+mS
+ol
+mI
+oH
+ol
+ol
+ob
+mI
+nx
+mG
+jQ
+hq
+hq
+hq
+jQ
+kE
+kD
+kE
+kE
+mV
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+tf
+th
+th
+to
+th
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+nj
+kE
+kD
+kE
+kE
+kD
+kE
+kE
+mV
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+kG
+kE
+nj
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+hc
+uG
+uG
+nr
+nr
+kE
+kE
+kE
+kE
+kE
+kE
+nr
+nr
+nr
+nr
+kE
+hc
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+vU
+vU
+vI
+vI
+wV
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(71,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kl
+kW
+kW
+kW
+lO
+jR
+hq
+hq
+hq
+jR
+mG
+mQ
+mZ
+nv
+jI
+nb
+nT
+ns
+ns
+ns
+pr
+mI
+ol
+ol
+pS
+ns
+pD
+nd
+mI
+mG
+mG
+jR
+hq
+hq
+hq
+jR
+qJ
+lK
+kE
+ld
+kE
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jR
+hq
+hq
+hq
+jR
+tg
+th
+tu
+th
+tf
+jR
+hq
+hq
+hq
+jR
+kE
+mU
+nj
+kF
+tM
+kE
+kD
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+lK
+kE
+ld
+kE
+kE
+kE
+kE
+jR
+hq
+hq
+hq
+jR
+kE
+kD
+kE
+kE
+kG
+jR
+hq
+hq
+hq
+jR
+kE
+kE
+hc
+uG
+hc
+nr
+nr
+nr
+kE
+kE
+kE
+kE
+kE
+nr
+nr
+nr
+nr
+kE
+hc
+hc
+kE
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(72,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+km
+kW
+lp
+kW
+lP
+jS
+hq
+hq
+hq
+jS
+mG
+mG
+na
+nw
+jI
+jI
+na
+na
+oW
+mI
+ps
+mG
+om
+ns
+ns
+oW
+ol
+oG
+nx
+qt
+mG
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+mV
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+th
+tj
+th
+to
+th
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+lK
+kE
+kL
+kE
+kE
+kE
+kE
+mV
+kE
+lf
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+lK
+kE
+ld
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+uG
+hc
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+vU
+vU
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(73,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kn
+kW
+lq
+kW
+lQ
+gP
+hq
+hq
+hq
+gP
+mG
+mH
+na
+jI
+nU
+jI
+mI
+oI
+na
+nB
+ns
+ns
+ns
+ns
+ns
+ns
+ql
+pw
+nR
+ng
+mG
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+mU
+lK
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+ti
+th
+tv
+tg
+tp
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+lf
+kE
+kE
+lK
+kE
+mU
+kE
+kE
+kE
+kE
+kE
+kE
+mU
+lK
+nj
+kL
+kE
+gP
+hq
+hq
+hq
+gP
+kE
+kJ
+lf
+kE
+mV
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+hc
+hc
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+kE
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(74,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+ko
+kW
+lr
+kW
+lR
+jQ
+hq
+hq
+hq
+jQ
+mH
+mI
+nb
+mI
+jI
+nY
+mI
+ne
+na
+ne
+pt
+nw
+nU
+pk
+ol
+qc
+jI
+oK
+mG
+oW
+mI
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+mV
+kE
+ld
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+th
+to
+th
+tu
+th
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+mV
+kE
+nj
+kE
+nj
+kF
+kE
+lf
+kE
+kE
+mV
+kE
+ld
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+mU
+lK
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+hc
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+uG
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+vU
+vU
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(75,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+gr
+iv
+ix
+iC
+gr
+gr
+gr
+gr
+gr
+gr
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kp
+kp
+kp
+kp
+kp
+jR
+hq
+hq
+hq
+mv
+mH
+mG
+nc
+ns
+nV
+om
+nd
+nd
+na
+na
+mI
+jI
+oz
+pK
+ol
+nX
+on
+jI
+jI
+qu
+mI
+mv
+hq
+hq
+hq
+qB
+kE
+nj
+kE
+kD
+kE
+qB
+hq
+hq
+hq
+ru
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+ru
+hq
+hq
+hq
+tc
+th
+tf
+tw
+ti
+th
+tc
+hq
+hq
+hq
+tH
+kE
+kE
+kD
+kE
+kE
+kL
+kE
+kE
+kE
+kE
+kE
+kE
+kD
+ld
+kE
+lK
+kG
+kE
+kE
+kE
+kE
+tH
+hq
+hq
+hq
+ur
+uA
+kG
+mV
+kE
+ld
+ur
+hq
+hq
+hq
+jR
+kE
+kE
+hc
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+uG
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(76,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+gr
+hS
+gr
+gr
+gr
+gr
+gr
+im
+gN
+iy
+gN
+gN
+iG
+iO
+iT
+iW
+iX
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kq
+kq
+kq
+kq
+kq
+jS
+hq
+hq
+hq
+jS
+mH
+mH
+nd
+mI
+nW
+ny
+nA
+oJ
+ns
+pj
+pu
+jI
+jI
+nd
+nd
+jI
+mG
+mZ
+ol
+nx
+mI
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+nj
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+sA
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+th
+th
+to
+tp
+th
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kD
+kE
+kE
+kE
+oN
+pn
+py
+pn
+pF
+kE
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+ld
+kE
+lK
+kG
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+uG
+nr
+nr
+nr
+nr
+nr
+nr
+vi
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+vU
+ww
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(77,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+hM
+gN
+gr
+hZ
+id
+ii
+gr
+in
+gN
+iz
+gN
+gN
+hV
+gN
+iU
+iW
+iY
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kq
+kX
+ls
+kq
+kq
+gP
+hq
+hq
+hq
+gP
+mI
+mI
+ne
+na
+nC
+nd
+ox
+ns
+mI
+na
+na
+nw
+nb
+jI
+jI
+qd
+ps
+mI
+ol
+qv
+mI
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+lK
+kE
+kL
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+sq
+sB
+sH
+nr
+nr
+nr
+sX
+mD
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+th
+to
+tg
+th
+tj
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+nj
+kE
+mV
+kE
+kE
+oN
+pb
+ue
+ue
+ue
+pG
+pF
+kE
+kE
+lK
+kE
+kE
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+nj
+gP
+hq
+hq
+hq
+gP
+kE
+hc
+hc
+nr
+nr
+nr
+nr
+nr
+vi
+vi
+vi
+nr
+nr
+nr
+mD
+mD
+hc
+hc
+hc
+hc
+vw
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wX
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(78,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+hN
+gN
+hS
+gN
+gN
+gN
+gr
+io
+gN
+gN
+gN
+gN
+iH
+iP
+iV
+iW
+iZ
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kq
+kq
+lt
+kq
+kq
+kU
+hq
+hq
+hq
+jQ
+mI
+mH
+nd
+jI
+jI
+on
+nw
+oK
+jI
+pk
+ns
+na
+nd
+ne
+nX
+nA
+nd
+ns
+qs
+nz
+mG
+kU
+hq
+hq
+hq
+jQ
+qJ
+mU
+kE
+qJ
+kE
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+sr
+sC
+sI
+sO
+sR
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+kU
+hq
+hq
+hq
+jQ
+tg
+th
+th
+th
+th
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+kG
+kE
+oO
+ue
+ue
+ue
+ue
+ue
+pL
+pU
+pn
+pn
+pn
+pn
+qw
+pn
+kU
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+uN
+kE
+jQ
+hq
+hq
+hq
+jQ
+kE
+uR
+uG
+nr
+nr
+nr
+nr
+nr
+vi
+vi
+vi
+mD
+mD
+mD
+mD
+hc
+hc
+hc
+hc
+hc
+uG
+kU
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vG
+vW
+vI
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(79,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+gr
+gr
+gr
+gr
+aa
+aa
+gr
+gr
+gN
+gN
+hV
+gN
+gN
+gN
+gr
+ip
+gN
+gN
+gN
+gN
+iI
+gr
+gr
+gr
+gr
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kq
+kq
+kX
+kq
+kq
+mm
+hq
+hq
+hq
+jR
+mG
+mR
+nf
+nx
+nX
+nd
+jI
+jI
+nU
+jI
+pv
+na
+ns
+jI
+nb
+mG
+ob
+ns
+jI
+jI
+mG
+mX
+hq
+hq
+hq
+jR
+kE
+nj
+kF
+kE
+lf
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+ss
+sD
+sI
+nr
+nr
+sS
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mX
+hq
+hq
+hq
+jR
+th
+th
+to
+tf
+th
+jR
+hq
+hq
+hq
+jR
+kE
+kD
+kE
+kE
+lK
+kE
+kE
+oP
+ue
+ue
+ue
+um
+uo
+jp
+jp
+jp
+jp
+jp
+jp
+jp
+jp
+mX
+hq
+hq
+hq
+jR
+nj
+lK
+kG
+kE
+kE
+jR
+hq
+hq
+hq
+jR
+kE
+hc
+hc
+nr
+nr
+nr
+nr
+nr
+vi
+vi
+vi
+nr
+nr
+mD
+mD
+mD
+hc
+uG
+hc
+hc
+hc
+uJ
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+vG
+vX
+vI
+wF
+vI
+wW
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(80,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+gr
+gI
+gY
+he
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+ia
+gN
+gN
+gr
+iq
+gN
+gN
+gN
+ir
+iJ
+gr
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kq
+kq
+lt
+kq
+kq
+kU
+hq
+hq
+hq
+jS
+mG
+mI
+nd
+ny
+nY
+nx
+jI
+nY
+jI
+jI
+nb
+pA
+nd
+px
+ol
+nd
+nQ
+mI
+jI
+mH
+mG
+kU
+hq
+hq
+hq
+jS
+mU
+kE
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+sE
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+kU
+hq
+hq
+hq
+jS
+th
+th
+tx
+th
+th
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+mV
+kE
+kE
+oQ
+ue
+ue
+ue
+ue
+ue
+pM
+po
+po
+qm
+po
+po
+po
+po
+kU
+hq
+hq
+hq
+jS
+kE
+lf
+kE
+mV
+kJ
+jS
+hq
+hq
+hq
+jS
+kE
+hc
+hc
+kE
+nr
+nr
+nr
+nr
+nr
+vi
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+hc
+hc
+hc
+vx
+kU
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vG
+vW
+vI
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(81,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gs
+gG
+gN
+gN
+gN
+hm
+ht
+hF
+hJ
+gN
+hO
+gr
+gr
+gr
+ie
+ij
+gr
+gr
+gr
+ie
+ij
+gr
+gr
+gr
+gr
+gr
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kq
+kY
+ls
+kq
+kq
+gP
+hq
+hq
+hq
+gP
+mG
+mI
+nc
+jI
+nZ
+nx
+nb
+oL
+oX
+nc
+oz
+jI
+oz
+jI
+ol
+nc
+nd
+nA
+oz
+mH
+mG
+gP
+hq
+hq
+hq
+gP
+mV
+kE
+kF
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+th
+tf
+th
+th
+tf
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kD
+kE
+lf
+kE
+kE
+oR
+pd
+ue
+ue
+ue
+pH
+pN
+kE
+kD
+kE
+tM
+kD
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+lf
+kE
+kE
+ld
+kE
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+hc
+kE
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+hc
+hc
+vw
+nk
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(82,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gt
+gH
+gN
+gN
+gN
+gr
+hu
+hG
+hu
+hu
+gN
+hT
+hW
+gN
+gN
+gN
+gN
+hW
+gN
+gN
+gN
+iE
+iK
+iQ
+iW
+iX
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kq
+kq
+kq
+kq
+kq
+jQ
+hq
+hq
+hq
+jQ
+mG
+mI
+mH
+nz
+jI
+oo
+jI
+jI
+oY
+jI
+jI
+jI
+pD
+jI
+jI
+nc
+nA
+nd
+nd
+mH
+mG
+jQ
+hq
+hq
+hq
+jQ
+mV
+kE
+ld
+nj
+kE
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+th
+tf
+th
+tj
+th
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+nj
+kE
+kF
+kE
+kE
+oR
+po
+po
+po
+pI
+kE
+kE
+kD
+kE
+kE
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+kE
+kJ
+kD
+kE
+lf
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+hc
+kE
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+uG
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+vY
+vU
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(83,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gt
+gH
+gO
+gN
+hf
+gr
+hv
+gZ
+gZ
+gZ
+gN
+hU
+gN
+ib
+gN
+ik
+gN
+gN
+gN
+gN
+gN
+hV
+gN
+gN
+iW
+iY
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kr
+kr
+kr
+kr
+kr
+jR
+hq
+hq
+hq
+mv
+mG
+mS
+mG
+mG
+jI
+jI
+nb
+jI
+jI
+jI
+pw
+pw
+ol
+jI
+nw
+ne
+nd
+ow
+nd
+mH
+mS
+mv
+hq
+hq
+hq
+qB
+nj
+kE
+kE
+lf
+kE
+qB
+hq
+hq
+hq
+ru
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+ru
+hq
+hq
+hq
+tc
+tj
+tp
+th
+tC
+th
+tc
+hq
+hq
+hq
+tH
+kE
+kD
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+lK
+lK
+kE
+kE
+kE
+nj
+kE
+kF
+kE
+kE
+kD
+tH
+hq
+hq
+hq
+ur
+kE
+kE
+kD
+lf
+kE
+ur
+hq
+hq
+hq
+jR
+kE
+kE
+hc
+kE
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(84,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gt
+gH
+gN
+gN
+gN
+gr
+hw
+gN
+gN
+gN
+hP
+gr
+hX
+gN
+gN
+gN
+gN
+ir
+gN
+gN
+gN
+iE
+iL
+iR
+iW
+iZ
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+ks
+kW
+lu
+kW
+lS
+jS
+hq
+hq
+hq
+jS
+mG
+mT
+mI
+mI
+jI
+jI
+na
+mI
+jI
+mR
+mI
+na
+mI
+nX
+jI
+jI
+nd
+qa
+ne
+nf
+mI
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kD
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+th
+ti
+th
+tu
+tp
+jS
+hq
+hq
+hq
+jS
+kE
+mV
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kD
+kE
+kE
+kE
+lK
+kE
+kE
+kE
+ld
+nj
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+lf
+nj
+uA
+kG
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kE
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+kE
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+vU
+vU
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(85,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gu
+gI
+gN
+gZ
+gN
+gr
+hx
+hH
+hK
+hL
+gr
+gr
+gr
+gr
+if
+il
+gr
+gr
+gr
+if
+il
+gr
+gr
+gr
+gr
+gr
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kt
+kW
+lv
+kW
+lT
+gP
+hq
+hq
+hq
+gP
+mH
+mG
+ng
+mT
+ns
+ns
+oy
+mZ
+oZ
+mH
+mI
+na
+oW
+nz
+jI
+jI
+nd
+ns
+nZ
+nd
+mG
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kD
+qJ
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+th
+th
+ti
+th
+tF
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kL
+mV
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+kE
+lf
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+lK
+kE
+kE
+kE
+ld
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+kE
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(86,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+gr
+gH
+ha
+hg
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gN
+gN
+gN
+gr
+is
+gN
+gN
+gN
+iF
+iM
+gr
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+ku
+kW
+lw
+kW
+lU
+jQ
+hq
+hq
+hq
+jQ
+mH
+mH
+nh
+mG
+mH
+op
+na
+ok
+ol
+oG
+mI
+na
+mG
+jI
+jI
+nb
+pR
+nf
+ne
+nd
+qy
+jQ
+hq
+hq
+hq
+jQ
+kE
+kD
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+mD
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+mD
+mD
+mD
+mD
+mD
+jQ
+hq
+hq
+hq
+jQ
+tf
+th
+tv
+tj
+tp
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+lf
+kE
+mV
+kE
+kE
+kE
+kE
+kE
+kE
+mU
+kE
+nj
+kE
+mU
+jQ
+hq
+hq
+hq
+jQ
+nj
+kE
+kE
+ld
+kJ
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+kE
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+nr
+kE
+kE
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+vU
+vU
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(87,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+gr
+gr
+gr
+gr
+aa
+aa
+gr
+gr
+gN
+gN
+hY
+gN
+gN
+gN
+gr
+it
+gN
+gN
+gN
+hx
+gr
+gr
+gr
+gr
+gr
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kv
+kW
+kW
+kW
+lV
+jR
+hq
+hq
+hq
+jR
+mG
+mH
+ni
+nA
+nd
+nd
+nQ
+ol
+ny
+mI
+mS
+na
+nz
+jI
+jI
+mI
+mT
+qb
+ne
+nd
+nd
+jR
+hq
+hq
+hq
+jR
+kE
+kE
+kE
+kE
+lK
+jR
+hq
+hq
+hq
+jR
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+nr
+nr
+mD
+nr
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+jR
+hq
+hq
+hq
+jR
+th
+th
+to
+tw
+tp
+jR
+hq
+hq
+hq
+jR
+kE
+kE
+nj
+tM
+kE
+kE
+ld
+kE
+kE
+kE
+kD
+kE
+nj
+kE
+kE
+kE
+mV
+kG
+nj
+kE
+kE
+jR
+hq
+hq
+hq
+jR
+lf
+kG
+kJ
+kE
+lf
+jR
+hq
+hq
+hq
+jR
+kE
+kE
+hc
+kE
+kE
+kE
+kE
+nr
+nr
+kE
+nr
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+uG
+kE
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+vV
+wv
+vI
+vI
+wW
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(88,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+hQ
+gN
+hR
+gN
+gN
+gN
+gr
+gI
+gN
+gN
+gN
+gN
+gr
+iO
+gN
+iW
+iX
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kw
+kW
+kW
+kW
+lW
+jS
+hq
+hq
+hq
+jS
+mG
+mH
+mG
+mG
+mG
+mG
+nR
+nR
+nd
+nd
+px
+ny
+mI
+nx
+oZ
+mT
+nC
+ns
+nx
+ny
+nd
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+lK
+kE
+nj
+jS
+hq
+hq
+hq
+jS
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+jS
+hq
+hq
+hq
+jS
+th
+to
+to
+th
+th
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kE
+kE
+nj
+nj
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+mV
+mV
+kE
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+mU
+kD
+lf
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+hc
+hc
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+hc
+uG
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+vU
+vU
+vI
+vI
+wV
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(89,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+gN
+gN
+hY
+ic
+ig
+gI
+gr
+gI
+gN
+iA
+gN
+gN
+iN
+gN
+gN
+iW
+iY
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+lo
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+mG
+mH
+mH
+mH
+oa
+mH
+mG
+mG
+ny
+pl
+nB
+nd
+nc
+ng
+pT
+ny
+nR
+qq
+mG
+mG
+nd
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kG
+mU
+kE
+kD
+kL
+ld
+kE
+nj
+kD
+kE
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+hc
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+hc
+vu
+kE
+kE
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+wE
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(90,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gr
+hR
+hR
+gr
+gr
+gr
+gr
+gr
+iu
+gI
+gI
+gI
+gN
+gr
+iS
+gN
+iW
+iZ
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+mG
+mG
+mG
+mG
+mG
+mH
+mH
+mG
+mG
+ny
+ny
+mG
+mG
+mG
+ny
+ns
+ns
+mG
+nd
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+hc
+uG
+kE
+kE
+kE
+uG
+hc
+kE
+kE
+kE
+kE
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+wt
+hq
+wM
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(91,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gQ
+gQ
+gP
+aa
+aa
+aa
+gr
+gr
+iw
+iB
+iD
+gr
+gr
+gr
+gr
+gr
+gr
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+mG
+mG
+mG
+mG
+mG
+nh
+mG
+mG
+mG
+ny
+ny
+ny
+ny
+ny
+mG
+mG
+mG
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(92,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nS
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nS
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+rT
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rT
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+tR
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tR
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(93,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gQ
+gQ
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(94,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hy
+hD
+hD
+hq
+hq
+hq
+hq
+hD
+hD
+hy
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+vB
+vC
+vD
+vD
+vD
+vC
+vB
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(95,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+vB
+vE
+vE
+vE
+vF
+vE
+vE
+vE
+vB
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(96,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+pa
+oi
+gP
+no
+pa
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+st
+oi
+gP
+no
+st
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+uf
+oi
+gP
+no
+uf
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+vB
+vE
+vE
+vE
+vF
+vF
+vF
+vE
+vE
+vE
+vB
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(97,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+jf
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+kz
+lx
+lF
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+nB
+mI
+jI
+oz
+na
+mI
+jI
+mR
+mI
+na
+mI
+nX
+jI
+oz
+nd
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+kD
+kE
+kE
+kD
+kE
+mV
+kL
+kE
+rU
+lf
+kE
+nj
+kE
+kE
+kF
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+tN
+tN
+tN
+kE
+tN
+tN
+tN
+kE
+tN
+tN
+tN
+kE
+tN
+tN
+tN
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+vC
+vE
+vE
+vE
+vF
+vE
+vF
+vE
+vE
+vE
+vC
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(98,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gX
+hc
+gX
+hq
+hq
+hq
+hE
+hE
+hE
+hE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+kz
+la
+la
+lG
+lF
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+mS
+mT
+ns
+ns
+nC
+mZ
+mT
+mH
+mI
+na
+mT
+nz
+jI
+jI
+nd
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+kE
+kE
+kE
+kE
+kE
+nj
+kE
+kD
+kE
+kE
+kD
+kE
+kE
+mV
+kE
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+vD
+vE
+vF
+vF
+vF
+vF
+vF
+vF
+vF
+vE
+vD
+hq
+hq
+hq
+hq
+hh
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xu
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(99,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hn
+hC
+hC
+hI
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+kA
+la
+ly
+la
+lZ
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+nd
+mG
+mH
+oA
+oM
+ok
+ol
+oG
+mS
+pE
+mG
+jI
+jI
+oz
+nY
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+kE
+rU
+kD
+kE
+kE
+kE
+nj
+sJ
+kE
+kE
+lK
+kE
+ld
+kE
+kE
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+kE
+kE
+kE
+kE
+tZ
+tZ
+tZ
+tZ
+tZ
+tZ
+kE
+kE
+kE
+kE
+kE
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+hq
+vD
+vF
+vF
+vE
+vF
+wG
+vF
+vE
+vF
+vF
+vD
+hq
+hq
+hq
+hq
+hi
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xv
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(100,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gX
+hc
+gX
+hq
+hq
+hq
+hD
+hD
+hD
+hD
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+kB
+la
+la
+la
+lH
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+nd
+ob
+nd
+nd
+nQ
+ol
+pm
+mI
+mS
+na
+nz
+jI
+jI
+mI
+mT
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+kE
+kE
+kE
+kE
+sg
+kE
+lK
+kE
+kL
+kE
+kE
+sg
+kE
+mV
+kE
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+vD
+vE
+vF
+vF
+vF
+vF
+vF
+vF
+vF
+vE
+vD
+hq
+hq
+hq
+hq
+hj
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xw
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(101,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+lb
+lz
+lH
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+nC
+mG
+mG
+mG
+nR
+nR
+nd
+nd
+oM
+ny
+mI
+nx
+mT
+mT
+nC
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+lf
+kE
+kE
+lK
+kE
+mU
+kE
+kE
+kE
+kE
+kE
+kE
+mU
+lK
+nj
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+tN
+tN
+tN
+kE
+tN
+tN
+tN
+kE
+tN
+tN
+tN
+kE
+tN
+tN
+tN
+up
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+vC
+vE
+vE
+vE
+vF
+vE
+vF
+vE
+vE
+vE
+vC
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(102,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+pa
+oi
+gP
+no
+pa
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+st
+oi
+gP
+no
+st
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+uf
+oi
+gP
+no
+uf
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+vB
+vE
+vE
+vE
+vF
+vF
+vF
+vE
+vE
+vE
+vB
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(103,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+vB
+vE
+vE
+vE
+vF
+vE
+vE
+vE
+vB
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(104,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hy
+hE
+hE
+hq
+hq
+hq
+hq
+hE
+hE
+hy
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+vB
+vC
+vD
+vD
+vD
+vC
+vB
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(105,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(106,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+oc
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+oc
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+rV
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rV
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+tS
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tS
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+uY
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+uY
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(107,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+kE
+kE
+kE
+kE
+kF
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kL
+kE
+kD
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(108,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+kE
+lK
+kG
+kE
+kE
+kE
+kD
+kE
+kE
+kE
+kE
+kE
+lf
+kE
+kE
+kE
+kE
+kE
+kE
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qY
+qK
+rJ
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qY
+qK
+rJ
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qY
+qK
+rJ
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+wL
+wY
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(109,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+lA
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+kD
+kE
+kE
+kD
+kE
+mV
+kL
+kE
+kE
+lf
+kE
+nj
+kE
+kE
+kF
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+wx
+wH
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(110,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kD
+kE
+jp
+kE
+kJ
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+nj
+kE
+kD
+kE
+kE
+kD
+kE
+kE
+mV
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ty
+qK
+qK
+tz
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ty
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+sY
+qK
+qK
+sZ
+qK
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+vZ
+wy
+vI
+wN
+wZ
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(111,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kE
+ld
+jp
+kM
+kI
+jR
+hq
+hq
+hq
+jR
+kE
+mU
+nj
+kF
+kE
+kE
+kD
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+lK
+kE
+ld
+kE
+kE
+kE
+kE
+jR
+hq
+hq
+hq
+jR
+qK
+qX
+qK
+qK
+qY
+jR
+hq
+hq
+hq
+jR
+qK
+qX
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qX
+qK
+ra
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qX
+qK
+ra
+qK
+qK
+tz
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+tz
+qK
+qK
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+ty
+rJ
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qX
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+tz
+qK
+qK
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+qZ
+qK
+qY
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+wa
+wy
+vI
+wO
+wO
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(112,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kF
+le
+jp
+kG
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+lK
+kE
+kL
+kE
+kE
+kE
+kE
+mV
+kE
+lf
+kE
+jS
+hq
+hq
+hq
+jS
+qK
+qY
+qK
+ra
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qK
+qK
+rJ
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qK
+qK
+rJ
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+tz
+rJ
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qX
+qY
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qK
+qK
+rJ
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+sZ
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+wb
+wz
+vI
+wO
+xa
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(113,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kE
+kJ
+jp
+kD
+kG
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+lf
+kE
+kE
+lK
+kE
+mU
+kE
+kE
+kE
+kE
+kE
+kE
+mU
+lK
+nj
+kL
+kE
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+rf
+qY
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qY
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+rH
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+rJ
+tq
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qY
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+rH
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+rJ
+qK
+qX
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qY
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+rH
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+sY
+qK
+qK
+sY
+qK
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+wc
+wc
+vI
+wP
+xb
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(114,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kE
+lf
+jp
+kE
+mb
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+mV
+kE
+nj
+kE
+nj
+kF
+kE
+lf
+kE
+kE
+mV
+kE
+ld
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+qK
+qZ
+qK
+qK
+qX
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ty
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qY
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+rQ
+qK
+qK
+qX
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+wc
+wc
+wI
+wQ
+xc
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(115,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+eG
+eU
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kG
+lg
+jp
+kJ
+kM
+jR
+hq
+hq
+hq
+mw
+kE
+kE
+kD
+kE
+kE
+kL
+kE
+kE
+kE
+kE
+kE
+kE
+kD
+ld
+kE
+lK
+kG
+kE
+kE
+kE
+kE
+mw
+hq
+hq
+hq
+qC
+qK
+qK
+qK
+qK
+qK
+qC
+hq
+hq
+hq
+rv
+qK
+qK
+ra
+qX
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rv
+hq
+hq
+hq
+td
+qK
+qK
+ra
+qX
+qK
+td
+hq
+hq
+hq
+tI
+qK
+qK
+ra
+qX
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ty
+qK
+qK
+tI
+hq
+hq
+hq
+us
+qK
+qK
+qK
+qK
+ra
+us
+hq
+hq
+hq
+uP
+qK
+qK
+ra
+qX
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+uP
+hq
+hq
+hq
+vy
+rJ
+qK
+qK
+qY
+qK
+vy
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+wd
+wd
+vI
+wR
+wR
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(116,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+eH
+eH
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kE
+kE
+jp
+kF
+kG
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kD
+kE
+kE
+kE
+oN
+pn
+py
+pn
+pF
+kE
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+qK
+qX
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qY
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+un
+un
+un
+qK
+ra
+qK
+qY
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qX
+qK
+qK
+uF
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qY
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+si
+sv
+sT
+rH
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+we
+wd
+vI
+wS
+wS
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(117,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ei
+er
+bJ
+eV
+fk
+ei
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kH
+lh
+jp
+lI
+kL
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+nj
+kE
+mV
+kE
+kE
+oN
+pb
+jp
+pc
+jp
+pG
+pF
+kE
+kE
+lK
+kE
+kE
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+qK
+ra
+rf
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+rH
+qK
+qK
+qK
+qY
+qK
+qK
+qZ
+qK
+sh
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+gP
+hq
+hq
+hq
+gP
+qK
+rH
+qK
+tq
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+rH
+qK
+qK
+qK
+qY
+qK
+qK
+qZ
+qK
+ty
+un
+un
+un
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+ty
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+rH
+qK
+qK
+qK
+qY
+qK
+qK
+qZ
+vn
+vn
+vr
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+gP
+hq
+hq
+hq
+gP
+qK
+sj
+mJ
+sU
+qK
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vI
+vI
+vI
+vI
+vI
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(118,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ej
+es
+eI
+bJ
+fl
+ej
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kE
+li
+jp
+kG
+kJ
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+kG
+kE
+oO
+jp
+pc
+pc
+pc
+jp
+pL
+pU
+pn
+pn
+pn
+pn
+qw
+pn
+kU
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+un
+un
+un
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+jQ
+qK
+uF
+qY
+uF
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+vn
+vp
+vn
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+jQ
+rJ
+sj
+mJ
+sU
+qK
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vG
+wf
+vI
+vI
+vI
+xd
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(119,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bn
+eW
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kI
+kE
+jp
+lf
+kD
+jR
+hq
+hq
+hq
+jR
+kE
+kD
+kE
+kE
+lK
+kE
+kE
+oP
+pc
+pc
+pc
+pc
+jp
+jp
+jp
+jp
+jp
+jp
+jp
+jp
+jp
+mX
+hq
+hq
+hq
+jR
+qK
+qK
+qK
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+rJ
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qX
+qK
+qK
+qK
+mX
+hq
+hq
+hq
+jR
+qK
+tq
+rJ
+qK
+rH
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+rJ
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qK
+un
+un
+un
+qK
+ra
+qK
+qX
+tz
+qK
+qK
+mX
+hq
+hq
+hq
+jR
+qK
+qK
+uF
+rJ
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+rJ
+qK
+qZ
+qK
+qK
+qK
+qK
+vn
+vn
+vn
+qK
+qK
+qK
+ra
+qK
+qX
+qK
+qK
+qK
+mX
+hq
+hq
+hq
+jR
+qK
+sj
+vz
+sU
+qY
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+vG
+wf
+vI
+vI
+vI
+xe
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(120,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+et
+eJ
+bJ
+fm
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kE
+kG
+jp
+kE
+kJ
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+mV
+kE
+kE
+oQ
+jp
+pc
+pc
+pc
+jp
+pM
+po
+po
+qm
+po
+po
+po
+po
+kU
+hq
+hq
+hq
+jS
+qK
+qK
+rf
+qZ
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+ty
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+ty
+qK
+qK
+tz
+qK
+qK
+qK
+rH
+tz
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+jS
+qK
+qZ
+qK
+qK
+rH
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+jS
+qK
+sj
+mJ
+sU
+qK
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vG
+vI
+vI
+wF
+vI
+vI
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(121,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+cw
+cU
+bn
+aa
+bn
+bn
+bn
+bJ
+fn
+bn
+aa
+bn
+fU
+gg
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kD
+lj
+jp
+lJ
+kG
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kD
+kE
+lf
+kE
+kE
+oR
+pd
+jp
+pc
+jp
+pH
+pN
+kE
+kD
+kE
+kE
+kD
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qX
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qY
+qK
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qY
+qK
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qZ
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qY
+qK
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+gP
+hq
+hq
+hq
+gP
+qX
+sj
+mJ
+sU
+qK
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+wJ
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+aa
+xl
+xm
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(122,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+cx
+cV
+bn
+aa
+bn
+eu
+bn
+bJ
+fo
+bn
+aa
+bn
+fV
+bJ
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kJ
+kF
+jp
+kJ
+mc
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+nj
+kE
+kF
+kE
+kE
+oR
+po
+po
+po
+pI
+kE
+kE
+kD
+kE
+kE
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+qK
+qY
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+tz
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+tz
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+tz
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+sk
+sw
+sV
+qX
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+wg
+wg
+vI
+wT
+wg
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(123,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bZ
+bJ
+cW
+bn
+aa
+bn
+ev
+eK
+bJ
+fp
+bn
+aa
+bn
+fW
+bJ
+gv
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kE
+kG
+jp
+kG
+lf
+jR
+hq
+hq
+hq
+mw
+kE
+kD
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+lK
+lK
+kE
+kE
+kE
+nj
+kE
+kF
+kE
+kE
+kD
+mw
+hq
+hq
+hq
+qC
+qK
+qK
+qX
+qK
+ra
+qC
+hq
+hq
+hq
+rv
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+sh
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+rv
+hq
+hq
+hq
+td
+qK
+qK
+ty
+tq
+qK
+td
+hq
+hq
+hq
+tI
+qK
+qK
+ty
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+tI
+hq
+hq
+hq
+us
+qK
+qK
+qK
+ra
+qK
+us
+hq
+hq
+hq
+uP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+uP
+hq
+hq
+hq
+vy
+rQ
+qK
+qX
+qK
+qK
+vy
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+vI
+vI
+vI
+vI
+vI
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(124,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+ca
+bJ
+cX
+bn
+aa
+bn
+ew
+bn
+eX
+bJ
+bn
+aa
+bn
+fX
+bJ
+gw
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kE
+kD
+jp
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+mV
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kD
+kE
+kE
+kE
+lK
+kE
+kE
+kE
+ld
+nj
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+qK
+qZ
+qK
+rf
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ty
+qK
+qK
+tz
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+ty
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+wg
+wg
+vI
+wg
+wg
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(125,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+cy
+bn
+bn
+dM
+bn
+bn
+eL
+bJ
+bJ
+bn
+dM
+bn
+bn
+eW
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kK
+kE
+jp
+kJ
+lh
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kL
+mV
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+kE
+kE
+nj
+kE
+kE
+kE
+kE
+lf
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qX
+qK
+qX
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+gP
+hq
+hq
+hq
+gP
+rJ
+qK
+qK
+rJ
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qX
+qK
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+gP
+hq
+hq
+hq
+gP
+rQ
+qK
+qX
+qK
+rH
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+wH
+wx
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(126,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+cb
+bJ
+bJ
+bn
+bn
+bn
+bn
+bn
+bJ
+fq
+bn
+bn
+bn
+bJ
+bJ
+gx
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kL
+kM
+jp
+kE
+kM
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+lf
+kE
+mV
+kE
+kE
+kE
+kE
+kE
+kE
+mU
+kE
+nj
+kE
+mU
+jQ
+hq
+hq
+hq
+jQ
+qK
+ra
+qY
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+ra
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+ra
+rJ
+qK
+ty
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+rJ
+jQ
+hq
+hq
+hq
+jQ
+qK
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+ra
+rJ
+qK
+qK
+qK
+qK
+qK
+qK
+jQ
+hq
+hq
+hq
+jQ
+qK
+qX
+qK
+qK
+qY
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+wh
+vI
+vI
+vI
+wh
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(127,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+cc
+bJ
+bJ
+do
+bn
+ek
+ex
+eM
+bJ
+bJ
+fx
+bn
+fH
+bJ
+bJ
+bJ
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kE
+kJ
+jp
+lK
+kD
+jR
+hq
+hq
+hq
+jR
+kE
+kE
+nj
+kE
+kE
+kE
+ld
+kE
+kE
+kE
+kD
+kE
+nj
+kE
+kE
+kE
+mV
+kG
+nj
+kE
+kE
+jR
+hq
+hq
+hq
+jR
+qK
+qX
+qK
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+rJ
+rJ
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qX
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+tz
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+tz
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+rJ
+rJ
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qX
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+ra
+qK
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+rJ
+rJ
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qX
+qK
+jR
+hq
+hq
+hq
+jR
+qK
+qZ
+qK
+rQ
+qK
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+wh
+vI
+vI
+vI
+wh
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(128,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bG
+cd
+cz
+cY
+bJ
+dN
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+dN
+bJ
+cz
+gh
+gy
+gk
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kM
+kE
+jp
+kL
+kE
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kE
+kE
+nj
+nj
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+mV
+mV
+kE
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qK
+qY
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qX
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qK
+qX
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+qK
+qX
+qK
+qK
+qK
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+wh
+vI
+vI
+vI
+wh
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(129,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bH
+ce
+cA
+cZ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+fY
+gi
+gz
+gl
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+lA
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kG
+mU
+kE
+kD
+kL
+ld
+kE
+nj
+kD
+kE
+kE
+kE
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qZ
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+rH
+qK
+tz
+qK
+qK
+qZ
+qK
+ty
+qK
+qK
+qK
+qX
+qK
+qZ
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+rH
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qZ
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+wH
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(130,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bI
+cf
+cB
+da
+bJ
+bn
+bJ
+bJ
+dp
+eY
+bJ
+bJ
+bn
+bJ
+fZ
+gj
+gA
+gm
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+qK
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rJ
+qK
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+qx
+qz
+hq
+hq
+hq
+hq
+wi
+wt
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(131,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bn
+bn
+bn
+bn
+bJ
+bJ
+dq
+eZ
+bJ
+bJ
+bn
+bn
+bn
+bn
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+kE
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(132,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+db
+db
+dO
+el
+bJ
+dq
+eZ
+bJ
+dt
+fD
+db
+db
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+oc
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+oc
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+rV
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rV
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+tS
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tS
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+uY
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+uY
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(133,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bG
+db
+dp
+dP
+bJ
+bJ
+dq
+eZ
+bJ
+bJ
+fE
+eY
+db
+gk
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(134,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bH
+db
+dq
+dO
+bJ
+bJ
+dq
+eZ
+bJ
+bJ
+fD
+eZ
+db
+gl
+aa
+aa
+aa
+aa
+aa
+hh
+hz
+hD
+hD
+hq
+hq
+hq
+hq
+hD
+hD
+hz
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+gP
+gP
+gP
+gP
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(135,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bI
+db
+dr
+dQ
+bJ
+bJ
+dq
+eZ
+bJ
+bJ
+fF
+fa
+db
+gm
+aa
+aa
+aa
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+kN
+kN
+kN
+gP
+md
+gP
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(136,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+db
+db
+dO
+bJ
+bJ
+dr
+fa
+bJ
+bJ
+fD
+db
+db
+bn
+bn
+aa
+aa
+aa
+aa
+hj
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+gP
+gP
+gP
+jM
+jM
+jM
+gP
+kR
+gP
+gP
+gP
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+pe
+oi
+gP
+no
+pe
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+su
+oi
+gP
+no
+su
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+ug
+oi
+gP
+no
+ug
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+vj
+oi
+gP
+no
+vj
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(137,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bn
+dc
+ds
+dR
+bn
+bJ
+bJ
+bJ
+bJ
+bn
+dc
+ds
+dR
+bn
+bn
+bn
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hB
+hq
+hq
+hq
+gP
+jM
+jM
+jM
+jM
+jM
+jM
+jM
+jM
+jM
+gP
+hq
+hq
+hq
+hq
+gP
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nk
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+qK
+rW
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+sY
+qK
+qK
+sZ
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+qK
+qX
+qK
+qK
+qK
+qK
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qX
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+nk
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+aa
+xl
+xn
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(138,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bn
+cC
+dd
+bJ
+bJ
+bn
+bJ
+bJ
+bJ
+bJ
+bn
+fG
+fN
+ga
+bJ
+bn
+bn
+bn
+gX
+hc
+gX
+hq
+hq
+hq
+hE
+hE
+hE
+hE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jy
+jM
+gP
+kO
+kO
+kO
+kO
+me
+gP
+jM
+jy
+hq
+hq
+hq
+hq
+kU
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rQ
+qK
+sd
+qK
+si
+sv
+sv
+sv
+sv
+sv
+sT
+qK
+qK
+qZ
+qK
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+qK
+qK
+tz
+qK
+qK
+ra
+qK
+qK
+qX
+qK
+qZ
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+qK
+qK
+qZ
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qZ
+qK
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qL
+qM
+rh
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xo
+xk
+xk
+xk
+xu
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(139,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bo
+bJ
+bo
+bJ
+bJ
+bJ
+bJ
+dN
+bJ
+bJ
+bJ
+bJ
+dN
+bJ
+bJ
+bJ
+bJ
+gB
+bJ
+bo
+gP
+hb
+gP
+hq
+hq
+hq
+hn
+hC
+hC
+hI
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+gP
+kP
+kP
+kP
+kP
+gP
+gP
+gP
+gP
+hq
+hq
+hq
+hq
+mX
+nD
+nD
+nD
+oB
+nD
+nD
+nD
+oB
+nD
+nD
+nD
+oB
+nD
+nD
+nD
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+qK
+qX
+qK
+rW
+sj
+mJ
+mJ
+sK
+mJ
+mJ
+sU
+qK
+sZ
+qK
+qK
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+qK
+qK
+qK
+qK
+qK
+qK
+qY
+ua
+qK
+qK
+qK
+qK
+ra
+qK
+qK
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+vq
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+vA
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xp
+xk
+xk
+xk
+xv
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(140,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bo
+bK
+bo
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+gB
+bK
+gB
+gQ
+hc
+gQ
+hq
+hq
+hq
+hD
+hD
+hD
+hD
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jz
+jM
+gP
+kQ
+kQ
+kQ
+kQ
+mf
+gP
+jM
+jz
+hq
+hq
+hq
+hq
+kU
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+qK
+qZ
+qK
+sf
+sk
+sw
+sw
+sw
+sw
+sw
+sV
+sY
+qK
+qK
+sY
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+qK
+qK
+rJ
+ra
+ua
+qK
+rJ
+qZ
+qX
+qK
+qK
+qK
+qK
+qK
+qK
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qK
+qK
+qZ
+qK
+qK
+qK
+qK
+qZ
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qN
+qM
+ri
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xq
+xk
+xk
+xk
+xw
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(141,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bn
+cD
+bJ
+bJ
+do
+bn
+ey
+eN
+fb
+fr
+bn
+fH
+bJ
+bJ
+bJ
+bn
+bn
+bn
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hq
+hq
+hq
+hq
+gP
+jM
+jM
+jM
+jM
+jM
+jM
+jM
+jM
+jM
+gP
+hq
+hq
+hq
+hq
+nk
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+qK
+qX
+rW
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+rQ
+qK
+qK
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+qK
+qX
+qK
+qX
+qY
+qK
+qK
+qK
+qK
+qK
+qK
+qY
+qK
+qK
+rH
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+nk
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(142,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bn
+de
+de
+bn
+bn
+dd
+eO
+bJ
+bJ
+bn
+bn
+fO
+fO
+bn
+bn
+bn
+aa
+aa
+aa
+hh
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+gP
+gP
+gP
+kR
+gP
+kR
+gP
+kR
+gP
+gP
+gP
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+pe
+oi
+gP
+no
+pe
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+su
+oi
+gP
+no
+su
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+ug
+oi
+gP
+no
+ug
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+vj
+oi
+gP
+no
+vj
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(143,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bG
+cE
+bJ
+bJ
+bn
+em
+bJ
+bJ
+bJ
+fs
+cc
+bn
+bJ
+bJ
+cc
+gk
+aa
+aa
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+kS
+gP
+lB
+gP
+kS
+gP
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(144,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bI
+cF
+bJ
+dt
+bn
+em
+bJ
+bJ
+bJ
+bJ
+fy
+bn
+el
+bJ
+cc
+gm
+aa
+aa
+aa
+aa
+hj
+hz
+hE
+hE
+hq
+hq
+hq
+hq
+hE
+hE
+hz
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+gP
+gP
+gP
+gP
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(145,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+cG
+bJ
+du
+bn
+bn
+bJ
+bJ
+bJ
+cH
+bn
+bn
+bJ
+bJ
+cc
+bn
+bn
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(146,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+cg
+bJ
+bJ
+bJ
+dS
+bn
+bn
+bn
+bn
+bn
+bn
+bJ
+bJ
+bJ
+bJ
+gC
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+od
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+od
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+rX
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rX
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+tT
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tT
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nL
+oi
+gP
+no
+vk
+oi
+gP
+no
+vk
+oi
+gP
+no
+nL
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mO
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mO
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(147,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+ch
+cH
+df
+bJ
+dT
+bn
+bL
+bL
+bL
+bL
+bn
+fI
+bJ
+bJ
+cH
+gD
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+rx
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mB
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+mE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(148,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+bM
+ci
+ci
+dg
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+mJ
+mJ
+mJ
+mJ
+mJ
+nm
+nm
+nl
+mJ
+mJ
+mJ
+nl
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+rx
+rx
+ry
+rN
+ry
+ry
+ry
+ry
+rx
+ry
+ry
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+mF
+qz
+hq
+hq
+hq
+ut
+ut
+ut
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ms
+mC
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mF
+qz
+hq
+hq
+hq
+hq
+hq
+wA
+hq
+wL
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(149,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bL
+bL
+bL
+bL
+bn
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bn
+bL
+bL
+bL
+bL
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+ll
+kU
+gP
+mi
+hq
+hq
+hq
+gP
+mJ
+mJ
+mJ
+mJ
+nl
+mK
+nm
+nn
+nm
+nm
+mJ
+mJ
+mJ
+mK
+nl
+mK
+mK
+mK
+mJ
+mJ
+mJ
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+mD
+mD
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rx
+rD
+rB
+rz
+rz
+rz
+rz
+rz
+rz
+sy
+rz
+rz
+rM
+ry
+ry
+ry
+rx
+rx
+ry
+ry
+ry
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+uJ
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+wK
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(150,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bM
+ci
+ci
+dg
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bn
+bM
+ci
+ci
+dg
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+jM
+jM
+jM
+jM
+jM
+jQ
+hq
+hq
+hq
+jQ
+mJ
+mJ
+nl
+mK
+nm
+oe
+nm
+oq
+oq
+oD
+pz
+nm
+of
+nm
+mJ
+mJ
+nm
+mJ
+mJ
+nl
+mJ
+jQ
+hq
+hq
+hq
+jQ
+nl
+mK
+nm
+oe
+nm
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rY
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+tk
+tk
+tk
+tk
+tk
+jQ
+hq
+hq
+hq
+jQ
+ry
+rB
+rz
+rz
+rF
+rA
+rA
+rE
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+rB
+rz
+rz
+rz
+jQ
+hq
+hq
+hq
+jQ
+kE
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+wj
+vI
+vI
+vI
+xf
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(151,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+jM
+jM
+jM
+jM
+jM
+jR
+hq
+hq
+hq
+jR
+mJ
+mK
+mK
+nm
+oe
+nm
+nm
+oq
+oC
+nF
+nm
+oq
+oC
+nm
+nm
+oq
+oq
+nm
+mJ
+mK
+mJ
+jR
+hq
+hq
+hq
+jR
+mK
+nm
+oe
+nm
+nm
+jR
+hq
+hq
+hq
+jR
+rC
+rC
+rC
+mD
+mD
+mD
+rY
+mD
+mD
+rC
+rC
+rC
+rC
+mD
+rY
+mD
+mD
+mD
+rC
+rC
+rC
+jR
+hq
+hq
+hq
+jR
+tk
+tr
+tk
+tk
+tk
+jR
+hq
+hq
+hq
+jR
+rz
+rz
+rz
+rK
+ry
+ry
+rD
+rx
+rA
+rA
+rA
+sn
+sQ
+rz
+rz
+rz
+rz
+rz
+rz
+rF
+rA
+jR
+hq
+hq
+hq
+jR
+kE
+uG
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+wk
+vI
+vI
+vI
+xg
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(152,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+jM
+jM
+jM
+kg
+kg
+jS
+hq
+hq
+hq
+jS
+mJ
+mJ
+mJ
+nm
+nm
+nm
+os
+of
+oq
+oe
+nm
+oq
+pp
+oC
+nm
+nm
+nm
+oe
+nm
+mJ
+mJ
+jS
+hq
+hq
+hq
+jS
+mJ
+nm
+nm
+rb
+os
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+mD
+rY
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+mD
+sL
+mD
+mD
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+tk
+tk
+tk
+tl
+tk
+jS
+hq
+hq
+hq
+jS
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+rx
+rD
+rx
+sb
+rz
+rz
+rz
+rF
+rA
+rA
+rA
+rA
+rx
+rx
+jS
+hq
+hq
+hq
+jS
+kE
+uG
+uG
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+mD
+rY
+mD
+mD
+rY
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+wl
+vI
+vI
+vI
+wl
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(153,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kf
+jM
+jM
+kg
+jM
+jM
+hq
+hq
+hq
+gP
+mJ
+mJ
+mJ
+mJ
+mJ
+oq
+oq
+oq
+oC
+nm
+nn
+nm
+nm
+oq
+nm
+oC
+nm
+mJ
+mJ
+mK
+mJ
+gP
+hq
+hq
+hq
+gP
+mJ
+mJ
+mJ
+oq
+oq
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rY
+se
+mD
+rC
+rY
+rC
+rC
+rC
+rC
+rC
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+tk
+tk
+tk
+tk
+tk
+gP
+hq
+hq
+hq
+gP
+rA
+rA
+rI
+rA
+rE
+rz
+rz
+rG
+rx
+ry
+rB
+rz
+rF
+rA
+rx
+rx
+tU
+rD
+rx
+rx
+rx
+gP
+hq
+hq
+hq
+gP
+kE
+hc
+uG
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+wj
+vI
+vI
+vI
+xh
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(154,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kg
+jM
+jM
+lD
+jM
+mj
+hq
+hq
+hq
+jQ
+mJ
+mJ
+nm
+nn
+mJ
+mJ
+oC
+oq
+os
+pp
+nm
+oq
+nm
+nm
+oq
+nm
+mJ
+mJ
+mK
+mJ
+mJ
+jQ
+hq
+hq
+hq
+jQ
+nm
+nn
+mJ
+mJ
+oC
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+tk
+tk
+tr
+tk
+tk
+jQ
+hq
+hq
+hq
+jQ
+rx
+rx
+rx
+rx
+rx
+rE
+rz
+rM
+rB
+rz
+rz
+rz
+rG
+rx
+rx
+rx
+rx
+rx
+rx
+ry
+ry
+jQ
+hq
+hq
+hq
+jQ
+kE
+uH
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rY
+mD
+rY
+mD
+rY
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+wm
+vI
+vI
+vI
+xi
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(155,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+mx
+mJ
+mJ
+nm
+nm
+mJ
+mJ
+nm
+nE
+oq
+oq
+oC
+nm
+oq
+pp
+oq
+nm
+nm
+mJ
+nl
+mJ
+mJ
+mx
+hq
+hq
+hq
+qD
+nm
+rb
+mJ
+mJ
+nm
+qD
+hq
+hq
+hq
+rw
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rw
+hq
+hq
+hq
+te
+tk
+tk
+tk
+tk
+tk
+te
+hq
+hq
+hq
+tJ
+rx
+rx
+rx
+rD
+rx
+sb
+rz
+rz
+rz
+rz
+rF
+rA
+rx
+rx
+rx
+rD
+rx
+rx
+rB
+rz
+rz
+tJ
+hq
+hq
+hq
+jR
+kE
+kE
+uG
+hc
+hc
+jR
+hq
+hq
+hq
+uQ
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+uQ
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+wl
+vI
+vI
+vI
+wl
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(156,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kg
+jM
+jM
+lD
+jM
+mj
+hq
+hq
+hq
+jS
+mJ
+mJ
+nn
+nE
+mJ
+mJ
+nm
+nm
+oq
+nm
+nm
+oD
+oq
+oq
+nm
+mJ
+mJ
+mJ
+mJ
+mJ
+nm
+jS
+hq
+hq
+hq
+jS
+nn
+nE
+mJ
+mJ
+nm
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+tl
+tk
+tk
+tk
+tk
+jS
+hq
+hq
+hq
+jS
+rx
+rx
+rD
+rx
+tU
+rx
+rA
+rA
+rA
+rA
+rx
+tX
+rD
+rx
+rx
+rx
+rx
+rB
+rz
+rz
+rF
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+uZ
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+wj
+vI
+vI
+vI
+xh
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+aa
+xl
+xr
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(157,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kh
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+gP
+mJ
+mJ
+nm
+nm
+mJ
+mJ
+nn
+nm
+mJ
+nm
+nE
+nm
+os
+oC
+os
+nE
+mJ
+mJ
+mJ
+nm
+oe
+gP
+hq
+hq
+hq
+gP
+nm
+nm
+mJ
+nm
+nn
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+tk
+tk
+tk
+tk
+tk
+gP
+hq
+hq
+hq
+gP
+ry
+ry
+ry
+rx
+rx
+rx
+rx
+rx
+ry
+ry
+ry
+ry
+ry
+ry
+rx
+rx
+rB
+rz
+rz
+rF
+rx
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+uH
+uG
+hc
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+wm
+vI
+vI
+vI
+xi
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+aa
+xl
+xs
+xt
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(158,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kh
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jQ
+mJ
+mJ
+nm
+nF
+nm
+nm
+nE
+mJ
+mJ
+nm
+mJ
+nm
+nm
+oq
+oq
+nm
+nm
+nn
+nF
+nm
+nm
+kU
+hq
+hq
+hq
+jQ
+nm
+nF
+nm
+nm
+nE
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+kU
+hq
+hq
+hq
+jQ
+tk
+tk
+tA
+tk
+tr
+jQ
+hq
+hq
+hq
+jQ
+rz
+rz
+rz
+rM
+ry
+ry
+rN
+rB
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+rB
+rz
+rz
+rF
+rx
+rx
+kU
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+kU
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vG
+wl
+vI
+vI
+vI
+wl
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(159,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kh
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jR
+mJ
+mJ
+mJ
+nm
+of
+nm
+os
+mJ
+mJ
+nm
+mJ
+mJ
+or
+nm
+oC
+os
+nm
+nm
+nm
+nm
+nm
+mX
+hq
+hq
+hq
+jR
+nm
+nm
+rb
+nm
+os
+jR
+hq
+hq
+hq
+jR
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mX
+hq
+hq
+hq
+jR
+tk
+tk
+tk
+tk
+tk
+jR
+hq
+hq
+hq
+jR
+rA
+rE
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rF
+rI
+rA
+rE
+rz
+rz
+rz
+rz
+rF
+rx
+rx
+rx
+mX
+hq
+hq
+hq
+jR
+kE
+kE
+kE
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mX
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+vG
+vG
+vG
+wK
+vG
+vG
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(160,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kh
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jS
+mJ
+mJ
+mJ
+nm
+nF
+nm
+nm
+mJ
+mJ
+nm
+of
+mJ
+nm
+oq
+nm
+nm
+mJ
+mK
+nm
+nm
+nm
+kU
+hq
+hq
+hq
+jS
+mJ
+nm
+nF
+nm
+nm
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+rY
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+kU
+hq
+hq
+hq
+jS
+tk
+tr
+tk
+tk
+tk
+jS
+hq
+hq
+hq
+jS
+rx
+rD
+rA
+rA
+rA
+rI
+rA
+rA
+sn
+ry
+ry
+ry
+rx
+rA
+rA
+rA
+rA
+rx
+rx
+rD
+rx
+kU
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+uG
+hc
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+kU
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+vI
+vI
+vG
+vI
+wF
+vI
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(161,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kh
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+gP
+mJ
+mJ
+mJ
+mJ
+mJ
+nm
+nF
+os
+mJ
+nm
+pz
+mJ
+nn
+nE
+nm
+mJ
+mJ
+mK
+nm
+nm
+nF
+gP
+hq
+hq
+hq
+gP
+mJ
+mJ
+mJ
+nm
+nF
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+rY
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+tk
+tk
+tk
+tD
+tk
+gP
+hq
+hq
+hq
+gP
+rx
+ry
+ry
+rx
+rD
+rx
+tX
+sb
+rz
+rz
+rz
+rz
+rM
+rD
+rx
+rx
+rx
+rx
+rx
+rx
+rD
+nk
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+hc
+uG
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+jQ
+vI
+kU
+vI
+vI
+vI
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(162,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jQ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+nm
+nm
+mJ
+mJ
+nm
+mJ
+nm
+or
+nF
+mJ
+mJ
+nm
+nm
+mJ
+nm
+jQ
+hq
+hq
+hq
+jQ
+mJ
+mJ
+mJ
+mJ
+nm
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+rY
+sL
+rY
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+tk
+tk
+tk
+tk
+tk
+jQ
+hq
+hq
+hq
+jQ
+rB
+rz
+rz
+rM
+rx
+rx
+rN
+rB
+rz
+rF
+rE
+rz
+rz
+rM
+ry
+rx
+rx
+rx
+tU
+rx
+rx
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+hc
+uG
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+mD
+mD
+uZ
+rC
+rC
+rC
+rC
+rC
+uZ
+mD
+mD
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jR
+vI
+wB
+wv
+vI
+vI
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(163,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+mx
+mJ
+mJ
+nm
+nm
+mJ
+nm
+oD
+nm
+mJ
+mJ
+nm
+mJ
+nm
+nm
+mJ
+mJ
+oe
+nm
+mJ
+mJ
+mJ
+mx
+hq
+hq
+hq
+qD
+nm
+rb
+mJ
+nm
+oD
+qD
+hq
+hq
+hq
+rw
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+rY
+mD
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rw
+hq
+hq
+hq
+te
+tk
+tk
+tk
+tk
+tk
+te
+hq
+hq
+hq
+tJ
+rz
+rz
+rz
+rz
+rM
+rB
+rz
+rz
+rz
+rG
+rx
+rE
+rz
+rz
+rz
+rM
+rx
+rD
+rx
+rD
+rx
+tJ
+hq
+hq
+hq
+jR
+kE
+kE
+kE
+hc
+hc
+jR
+hq
+hq
+hq
+uQ
+rC
+rC
+rC
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+rC
+mD
+rY
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+uQ
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jS
+vI
+kU
+vI
+vI
+vI
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(164,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+kg
+jM
+jM
+kg
+jM
+mj
+hq
+hq
+hq
+jS
+mJ
+mJ
+nm
+nm
+nm
+nm
+nm
+or
+nm
+mJ
+mJ
+mJ
+mJ
+of
+nm
+mJ
+nm
+mK
+mJ
+mJ
+mJ
+jS
+hq
+hq
+hq
+jS
+nm
+nm
+nm
+nm
+nm
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+tk
+tl
+tk
+tr
+tk
+jS
+hq
+hq
+hq
+jS
+rz
+rF
+rE
+rz
+rz
+rz
+rz
+rF
+rA
+rx
+rx
+rx
+rA
+rE
+rz
+rz
+rM
+ry
+rx
+rx
+rx
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+hc
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+mD
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vI
+vI
+vG
+vI
+vI
+vI
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(165,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+kf
+jM
+jM
+kg
+jM
+jM
+hq
+hq
+hq
+gP
+mJ
+mJ
+nm
+mJ
+nm
+or
+nn
+nF
+nm
+nl
+mJ
+mJ
+nl
+nl
+mJ
+mJ
+nm
+mJ
+nm
+nm
+mJ
+gP
+hq
+hq
+hq
+gP
+nm
+mJ
+nm
+or
+nn
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+tk
+tk
+tk
+tk
+tk
+gP
+hq
+hq
+hq
+gP
+rz
+rG
+rx
+rE
+rz
+rz
+rz
+rM
+ry
+ry
+tU
+rx
+rD
+rx
+rE
+rz
+rz
+rz
+rM
+rx
+rx
+gP
+hq
+hq
+hq
+gP
+kE
+kE
+kE
+kE
+uG
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+mD
+mD
+rY
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+vI
+vI
+vI
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(166,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+jQ
+jM
+jM
+jM
+kg
+lL
+jQ
+hq
+hq
+hq
+jQ
+mK
+mK
+mJ
+mJ
+nm
+os
+oD
+os
+nm
+mJ
+mJ
+nl
+mJ
+mJ
+mJ
+nm
+oe
+nm
+nm
+nl
+mJ
+jQ
+hq
+hq
+hq
+jQ
+mJ
+mJ
+nm
+os
+oD
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+tk
+tk
+tk
+tk
+tk
+jQ
+hq
+hq
+hq
+jQ
+rA
+rx
+rD
+rx
+rA
+rE
+rz
+rz
+rz
+rz
+rM
+ry
+rx
+ry
+ry
+sQ
+rz
+rz
+rz
+rM
+rx
+jQ
+hq
+hq
+hq
+jQ
+kE
+kE
+kE
+kE
+kE
+jQ
+hq
+hq
+hq
+jQ
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+jQ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jQ
+hq
+hq
+hq
+vG
+wn
+vI
+vI
+vI
+xj
+vG
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(167,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+jR
+jM
+jM
+jM
+jM
+jM
+jR
+hq
+hq
+hq
+jR
+mJ
+mK
+mJ
+nm
+nm
+nm
+nm
+nm
+nF
+nm
+mJ
+mJ
+mJ
+mJ
+nm
+nm
+nm
+nn
+mK
+mJ
+mJ
+jR
+hq
+hq
+hq
+jR
+mJ
+nm
+nm
+nm
+nm
+jR
+hq
+hq
+hq
+jR
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jR
+hq
+hq
+hq
+jR
+tk
+tk
+tk
+tk
+tk
+jR
+hq
+hq
+hq
+jR
+rx
+rD
+rx
+rN
+ry
+rB
+rz
+rz
+rz
+rz
+rz
+rz
+sy
+rz
+rz
+rz
+rz
+rz
+rz
+rz
+rM
+jR
+hq
+hq
+hq
+jR
+kE
+kE
+kE
+kE
+kE
+jR
+hq
+hq
+hq
+jR
+rC
+rC
+rC
+rC
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+jR
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jR
+hq
+hq
+hq
+vG
+wo
+vI
+vI
+vI
+xj
+vG
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(168,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+jS
+jM
+jM
+jM
+jM
+jM
+jS
+hq
+hq
+hq
+jS
+mJ
+mJ
+nl
+nm
+nm
+os
+nm
+or
+nm
+nm
+nm
+mJ
+nl
+mJ
+nm
+nn
+nm
+nm
+mJ
+mJ
+mJ
+jS
+hq
+hq
+hq
+jS
+mJ
+nm
+nm
+nm
+mJ
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+tk
+tr
+tk
+tk
+tk
+jS
+hq
+hq
+hq
+jS
+ry
+ry
+rB
+rz
+rz
+rz
+rz
+rF
+rA
+rA
+rE
+rz
+rz
+rz
+sW
+rz
+rz
+rz
+sW
+rz
+rz
+jS
+hq
+hq
+hq
+jS
+kE
+kE
+kE
+kE
+kE
+jS
+hq
+hq
+hq
+jS
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+jS
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+jS
+hq
+hq
+hq
+vG
+wp
+vI
+vI
+vI
+xj
+vG
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(169,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+ll
+kU
+gP
+mi
+hq
+hq
+hq
+gP
+mJ
+mJ
+nm
+nm
+mK
+mK
+nm
+nm
+nm
+mJ
+nl
+mJ
+mJ
+mJ
+oe
+nm
+nl
+mK
+mJ
+mJ
+mJ
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rz
+rz
+rz
+rz
+rF
+rA
+rA
+rx
+rx
+rD
+rx
+rA
+rA
+rI
+rx
+rA
+rA
+rA
+rx
+rA
+rA
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+uJ
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+gP
+gP
+kU
+mX
+kU
+gP
+gP
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+vG
+vG
+vG
+wK
+vG
+vG
+vG
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(170,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+ji
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+mJ
+mJ
+mJ
+mJ
+nl
+mJ
+mJ
+nm
+mJ
+mJ
+mJ
+mJ
+nm
+nm
+nm
+mJ
+mJ
+mJ
+mJ
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+rA
+rA
+rA
+rD
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rx
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mu
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+qx
+qz
+hq
+hq
+hq
+hq
+hq
+wt
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mr
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(171,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ja
+jg
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mJ
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+rD
+rx
+rx
+rx
+rx
+rx
+rx
+rD
+rx
+rx
+rD
+rx
+rx
+rx
+rx
+rx
+rD
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mF
+mE
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mB
+mC
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mA
+mz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(172,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jb
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+od
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+od
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+rX
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+rX
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+tT
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+tT
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nL
+oi
+gP
+no
+vk
+oi
+gP
+no
+vk
+oi
+gP
+no
+nL
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mP
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+mP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mN
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(173,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(174,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hA
+hD
+hD
+hq
+hq
+hq
+hq
+hD
+hD
+hA
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jm
+ka
+jP
+jp
+jm
+ka
+jP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+kx
+hq
+hq
+hq
+lX
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(175,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+jB
+jC
+kb
+jE
+jp
+jH
+kb
+mg
+jF
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jJ
+jW
+hq
+hq
+hq
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(176,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+jm
+jC
+jN
+kc
+jp
+jp
+jp
+kc
+jo
+mg
+jP
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+pf
+oi
+gP
+no
+pf
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+sx
+oi
+gP
+no
+sx
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+uh
+oi
+gP
+no
+uh
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+ju
+jK
+hq
+hq
+kZ
+kZ
+kZ
+hq
+hq
+jZ
+jY
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(177,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hq
+hq
+hq
+hq
+jn
+jD
+jO
+kd
+kT
+jp
+jO
+kd
+kT
+jn
+jD
+hq
+hq
+hq
+hq
+gP
+nG
+og
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+qe
+qn
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+mD
+uj
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jv
+hq
+hq
+ky
+qE
+rc
+rg
+lY
+hq
+hq
+jv
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(178,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gX
+hc
+gX
+hq
+hq
+hq
+hE
+hE
+hE
+hE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jo
+jE
+jp
+ke
+jp
+jp
+jp
+ke
+jp
+jH
+jN
+hq
+hq
+hq
+hq
+kU
+nH
+nG
+og
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+qe
+qn
+qr
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qM
+qM
+qM
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rC
+rC
+rC
+rC
+rC
+rC
+sl
+rC
+rC
+rC
+rC
+sl
+rC
+rC
+rC
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qM
+qM
+qM
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+mD
+mD
+mD
+mD
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+rC
+uj
+mD
+mD
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qM
+qM
+qM
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qM
+qM
+qM
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qE
+qM
+qM
+qM
+rg
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(179,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hB
+hq
+hq
+hn
+hC
+hC
+hI
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jp
+jp
+jp
+jp
+jp
+lC
+jp
+jp
+jp
+jp
+jp
+hq
+hq
+hq
+hq
+mX
+nI
+nI
+ou
+ot
+ot
+pg
+pg
+pg
+pg
+ot
+ot
+ot
+qf
+nI
+nI
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+rC
+rC
+rC
+rC
+sl
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+mD
+mD
+mD
+rC
+rC
+mD
+uj
+mD
+uj
+mD
+rC
+rC
+mD
+mD
+mD
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+mX
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+mX
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qF
+qM
+qM
+qM
+rr
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(180,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gX
+hc
+gX
+hq
+hq
+hq
+hD
+hD
+hD
+hD
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jm
+jF
+jp
+kc
+jp
+jp
+jp
+kc
+jp
+jB
+jP
+hq
+hq
+hq
+hq
+kU
+nJ
+nK
+oh
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+qg
+qo
+nH
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qM
+qM
+qM
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+sl
+rC
+rC
+rC
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qM
+qM
+qM
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+mD
+mD
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+rC
+rC
+uj
+mD
+mD
+mD
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qM
+qM
+qM
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qM
+qM
+qM
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+kU
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+kU
+hq
+hq
+hq
+hq
+hq
+hq
+jX
+qG
+qM
+qM
+qM
+rj
+mn
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(181,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+ai
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hb
+gP
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+gP
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+gP
+hq
+hq
+hq
+hq
+jn
+jD
+jO
+kd
+kT
+jp
+jO
+kd
+kT
+jn
+jD
+hq
+hq
+hq
+hq
+gP
+nK
+oh
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+ot
+qg
+qo
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+mD
+mD
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+rC
+mD
+mD
+mD
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gP
+hq
+hq
+hq
+hq
+jw
+hq
+hq
+kC
+qG
+rd
+rj
+ma
+hq
+hq
+jw
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(182,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hq
+hq
+hq
+hq
+jo
+jG
+jP
+ke
+jp
+jp
+jp
+ke
+jm
+mh
+jN
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+pf
+oi
+gP
+no
+pf
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+sx
+oi
+gP
+no
+sx
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+tW
+oi
+gP
+no
+uh
+oi
+gP
+no
+uh
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+no
+nL
+oi
+gP
+hq
+hq
+hq
+hq
+jx
+jL
+hq
+hq
+lc
+lc
+lc
+hq
+hq
+ju
+jK
+hq
+hq
+hq
+hq
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(183,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hp
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+ih
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hq
+hq
+hq
+hq
+hq
+jH
+jG
+ka
+jF
+jp
+jB
+ka
+mh
+jE
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jx
+jY
+hq
+hq
+hq
+hq
+hq
+jJ
+jK
+hq
+hq
+hq
+hq
+hq
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(184,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hA
+hE
+hE
+hq
+hq
+hq
+hq
+hE
+hE
+hA
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hi
+hq
+hq
+hq
+hq
+hq
+hq
+jo
+kb
+jN
+jp
+jo
+kb
+jN
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jZ
+kx
+hq
+hq
+hq
+lX
+jW
+hq
+hq
+hq
+hq
+hq
+hq
+hi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(185,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gX
+gX
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(186,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hb
+hc
+hc
+hb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+hn
+hC
+hI
+gP
+jd
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mW
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(187,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+gX
+gX
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jh
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+mL
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(188,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+jk
+jl
+jA
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+jk
+jl
+jA
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+je
+jj
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+hq
+my
+mM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(189,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+gP
+hn
+hC
+hI
+gP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(190,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(191,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(192,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(193,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(194,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(195,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(196,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(197,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm
index 0f50b69daf..638ebe5665 100644
--- a/maps/tether/tether-01-surface1.dmm
+++ b/maps/tether/tether-01-surface1.dmm
@@ -1358,12 +1358,17 @@
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"acw" = (
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 1
- },
-/turf/simulated/floor/tiled/monofloor{
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
dir = 1
},
+/obj/machinery/vending/loadout/clothing,
+/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"acx" = (
/turf/simulated/floor/tiled,
@@ -1373,29 +1378,17 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/mining_main/storage)
"acz" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- autoclose = 1;
- dir = 2;
- id_tag = null;
- name = "Laundry";
- req_access = list()
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
},
-/obj/effect/floor_decal/steeldecal/steel_decals_central1,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/monofloor,
+/obj/machinery/vending/loadout,
+/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"acA" = (
/obj/effect/floor_decal/borderfloor{
@@ -3168,7 +3161,7 @@
dir = 4
},
/turf/simulated/floor/tiled/monofloor,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"afi" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
@@ -3261,7 +3254,7 @@
},
/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"afq" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
@@ -3620,15 +3613,15 @@
/area/tether/surfacebase/tram)
"afZ" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
},
/obj/effect/floor_decal/corner/grey/border{
icon_state = "bordercolor";
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
+ dir = 1
},
+/obj/machinery/vending/loadout/overwear,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aga" = (
@@ -3917,7 +3910,7 @@
/area/rnd/chemistry_lab)
"agM" = (
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"agN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4094,7 +4087,7 @@
scrub_id = "atrium"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ahd" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloor{
@@ -4280,7 +4273,7 @@
/obj/structure/grille,
/obj/structure/railing,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ahv" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4669,7 +4662,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aid" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -4688,7 +4681,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aie" = (
/obj/machinery/light{
dir = 1
@@ -4707,7 +4700,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aif" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -4724,7 +4717,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aig" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -4740,7 +4733,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aih" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
@@ -4770,7 +4763,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aij" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -5259,7 +5252,7 @@
/turf/simulated/floor/tiled/monofloor{
dir = 1
},
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ajb" = (
/obj/structure/cable/green{
d1 = 1;
@@ -5600,7 +5593,7 @@
pixel_x = 24
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ajB" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -7896,7 +7889,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"anE" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/border_only,
@@ -7934,7 +7927,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"anH" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
@@ -8128,7 +8121,7 @@
sortType = "Primary Tool Storage"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"anV" = (
/obj/structure/cable{
d1 = 2;
@@ -8136,7 +8129,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"anW" = (
/obj/structure/cable{
d1 = 4;
@@ -8145,7 +8138,7 @@
pixel_x = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"anX" = (
/obj/structure/cable{
d1 = 4;
@@ -8155,7 +8148,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"anY" = (
/obj/structure/cable{
d1 = 4;
@@ -8165,7 +8158,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"anZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -8186,7 +8179,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoa" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable{
@@ -8200,7 +8193,7 @@
req_one_access = list()
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aob" = (
/obj/structure/cable{
d1 = 1;
@@ -8294,18 +8287,18 @@
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoi" = (
/obj/structure/flora/pottedplant,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoj" = (
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aok" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aol" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -8323,7 +8316,7 @@
pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aom" = (
/obj/structure/closet/firecloset/full/double,
/turf/simulated/floor/tiled/techfloor,
@@ -8654,7 +8647,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoQ" = (
/obj/structure/cable{
d1 = 1;
@@ -8663,15 +8656,15 @@
pixel_y = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoR" = (
/obj/machinery/light/flamp/noshade,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoS" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoT" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -8689,7 +8682,7 @@
pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aoU" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
@@ -9080,11 +9073,11 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"apA" = (
/obj/structure/table/bench/wooden,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"apB" = (
/obj/structure/railing{
dir = 1
@@ -9093,13 +9086,13 @@
dir = 8
},
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"apC" = (
/obj/structure/railing{
dir = 1
},
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"apD" = (
/obj/structure/railing{
dir = 4
@@ -9108,7 +9101,7 @@
dir = 1
},
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"apE" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -9127,7 +9120,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"apF" = (
/turf/simulated/wall,
/area/maintenance/lower/vacant_site)
@@ -9395,22 +9388,22 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqe" = (
/obj/structure/railing{
dir = 8
},
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqf" = (
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqg" = (
/obj/structure/railing{
dir = 4
},
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqh" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -9425,7 +9418,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqi" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
@@ -9773,7 +9766,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqJ" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -9794,11 +9787,11 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqK" = (
/mob/living/simple_mob/animal/passive/fish/koi/poisonous,
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqL" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -9813,14 +9806,14 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqM" = (
/obj/structure/grille,
/obj/structure/railing{
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aqN" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
@@ -9864,6 +9857,28 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
+"aqS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ id_tag = "spacedorm1";
+ name = "Room 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/sleep/Dorm_2)
"aqT" = (
/turf/simulated/wall/r_wall,
/area/storage/surface_eva/external)
@@ -9993,11 +10008,11 @@
pixel_x = -24
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"arg" = (
/obj/structure/railing,
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"arh" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -10037,6 +10052,19 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
+"arm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/obj/machinery/vending/loadout/accessory,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"arn" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/toolbox/emergency,
@@ -10170,22 +10198,22 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ary" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"arz" = (
/obj/structure/flora/ausbushes/ywflowers,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"arA" = (
/obj/machinery/light/small{
dir = 1
},
/obj/structure/flora/ausbushes/ywflowers,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"arB" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -10203,7 +10231,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"arC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
@@ -10218,6 +10246,19 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
+"arD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/obj/machinery/vending/loadout/gadget,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"arE" = (
/obj/structure/table/rack,
/obj/item/bodybag/cryobag,
@@ -10370,7 +10411,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"arO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
@@ -10505,7 +10546,7 @@
"asa" = (
/obj/structure/sign/directions/evac,
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asb" = (
/obj/structure/cable{
d1 = 1;
@@ -10515,7 +10556,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asc" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/machinery/light/small{
@@ -10523,19 +10564,19 @@
pixel_x = 0
},
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asd" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ase" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asf" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -10554,7 +10595,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asg" = (
/obj/structure/sign/directions/evac,
/turf/simulated/wall,
@@ -10653,7 +10694,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ass" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -10679,7 +10720,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ast" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/floor_decal/industrial/outline,
@@ -10947,7 +10988,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asN" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -10968,19 +11009,19 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asO" = (
/obj/machinery/light/small,
/obj/structure/flora/ausbushes/ywflowers,
/turf/simulated/floor/grass,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asQ" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -10998,7 +11039,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"asR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11162,19 +11203,19 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"atl" = (
/obj/structure/railing{
icon_state = "railing0";
dir = 1
},
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"atm" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"atn" = (
/obj/machinery/status_display{
pixel_x = 32;
@@ -11199,7 +11240,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ato" = (
/obj/machinery/camera/network/civilian{
dir = 4
@@ -11458,7 +11499,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"atN" = (
/obj/structure/disposalpipe/junction{
dir = 1
@@ -11473,7 +11514,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"atO" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -11499,7 +11540,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"atP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -11831,7 +11872,7 @@
pixel_x = -30
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aut" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -11842,7 +11883,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"auu" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -11867,7 +11908,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"auv" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -12104,21 +12145,21 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"auO" = (
/obj/structure/railing{
dir = 8
},
/obj/structure/railing,
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"auP" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 4
},
/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"auQ" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -12143,7 +12184,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"auR" = (
/turf/simulated/wall,
/area/security/checkpoint)
@@ -12372,7 +12413,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"avn" = (
/obj/structure/disposalpipe/junction{
dir = 1
@@ -12394,7 +12435,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"avo" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -12423,7 +12464,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"avp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -12897,7 +12938,7 @@
/area/maintenance/lower/xenoflora)
"avU" = (
/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"avV" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -12920,7 +12961,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"avW" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -12931,7 +12972,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"avX" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -12952,7 +12993,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"avY" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -13355,7 +13396,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"awF" = (
/obj/structure/cable{
d1 = 1;
@@ -13370,7 +13411,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"awG" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -13383,7 +13424,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"awH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13395,7 +13436,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"awI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13408,7 +13449,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"awJ" = (
/obj/structure/disposalpipe/junction{
dir = 1;
@@ -13426,7 +13467,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"awK" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -13445,7 +13486,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"awL" = (
/obj/structure/sign/nanotrasen,
/turf/simulated/wall,
@@ -13692,7 +13733,7 @@
dir = 2
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axh" = (
/obj/machinery/camera/network/northern_star,
/obj/effect/floor_decal/borderfloor{
@@ -13703,7 +13744,7 @@
},
/obj/structure/flora/pottedplant,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axi" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13718,7 +13759,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axj" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/structure/cable{
@@ -13735,7 +13776,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axk" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable{
@@ -13749,7 +13790,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axl" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/power/apc{
@@ -13769,7 +13810,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axm" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -13780,7 +13821,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axn" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/camera/network/northern_star{
@@ -13794,7 +13835,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axo" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/light,
@@ -13806,7 +13847,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axp" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -13821,7 +13862,7 @@
pixel_y = -24
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axq" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/newscaster{
@@ -13836,7 +13877,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axr" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -13851,7 +13892,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axs" = (
/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled{
@@ -14151,7 +14192,7 @@
"axT" = (
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axU" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -14160,7 +14201,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axV" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14177,7 +14218,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axW" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14193,7 +14234,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axX" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14209,7 +14250,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14228,7 +14269,7 @@
pixel_y = 26
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"axZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14244,7 +14285,7 @@
pixel_y = 30
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aya" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14260,7 +14301,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayb" = (
/obj/machinery/light{
dir = 1
@@ -14276,7 +14317,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14289,7 +14330,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayd" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14304,7 +14345,7 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aye" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
@@ -14319,7 +14360,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayf" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -14331,7 +14372,7 @@
pixel_y = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayg" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -14357,7 +14398,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayh" = (
/turf/simulated/wall,
/area/crew_quarters/locker/laundry_arrival)
@@ -14386,7 +14427,7 @@
pixel_x = -30
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -14401,7 +14442,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayl" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -14422,7 +14463,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aym" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
@@ -14739,32 +14780,32 @@
/area/maintenance/lower/xenoflora)
"ayG" = (
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayH" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayI" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayJ" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayK" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14772,14 +14813,14 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayN" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayO" = (
/obj/structure/cable{
d1 = 1;
@@ -14791,7 +14832,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayP" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -14818,7 +14859,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayQ" = (
/obj/machinery/status_display{
pixel_y = 30
@@ -14941,7 +14982,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayY" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -14953,7 +14994,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"ayZ" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -14972,7 +15013,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aza" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14994,7 +15035,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azb" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15013,7 +15054,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15029,7 +15070,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azd" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15042,7 +15083,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aze" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15064,7 +15105,7 @@
pixel_y = 30
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azf" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
@@ -15073,7 +15114,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azg" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15095,7 +15136,7 @@
pixel_y = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azh" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15112,7 +15153,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azi" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15131,7 +15172,7 @@
req_access = list()
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azj" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15150,7 +15191,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azk" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15166,7 +15207,7 @@
pixel_y = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azl" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15182,7 +15223,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azm" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_external/public,
@@ -15474,12 +15515,12 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azM" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lightgrey/bordercorner,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azN" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
@@ -15491,7 +15532,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azO" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -15505,7 +15546,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azP" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -15519,7 +15560,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azQ" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -15537,7 +15578,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azR" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -15554,7 +15595,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azS" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15571,7 +15612,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azT" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -15592,7 +15633,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azU" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15618,7 +15659,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azV" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15643,7 +15684,7 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azW" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15664,7 +15705,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azX" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15690,7 +15731,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azY" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -15712,7 +15753,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"azZ" = (
/obj/machinery/alarm{
dir = 4;
@@ -15808,7 +15849,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAh" = (
/obj/structure/disposalpipe/junction{
dir = 1
@@ -15819,7 +15860,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAi" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
@@ -15828,7 +15869,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAj" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15836,28 +15877,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAk" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAl" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15867,7 +15908,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -16134,7 +16175,7 @@
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAO" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -16144,13 +16185,13 @@
},
/obj/structure/flora/pottedplant,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAP" = (
/obj/structure/sign/directions/evac{
name = "\improper Secondary Evacuation Route"
},
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAQ" = (
/obj/structure/cable{
d1 = 1;
@@ -16167,20 +16208,20 @@
name = "Evacuation Route"
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAR" = (
/obj/structure/sign/directions/evac{
dir = 4
},
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAS" = (
/obj/structure/closet/crate,
/obj/item/weapon/handcuffs/fuzzy,
/obj/random/maintenance/security,
/obj/random/contraband,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aAT" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -16305,7 +16346,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBc" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16333,7 +16374,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBd" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16355,7 +16396,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBe" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16380,7 +16421,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBf" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -16402,7 +16443,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBg" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16427,7 +16468,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBh" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -16453,7 +16494,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -16471,7 +16512,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBj" = (
/obj/effect/floor_decal/steeldecal/steel_decals6,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -16491,7 +16532,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBk" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16515,7 +16556,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBl" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16537,7 +16578,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBm" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16557,7 +16598,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBn" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/light,
@@ -16580,7 +16621,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBo" = (
/obj/machinery/door/airlock/glass_external/public,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16959,7 +17000,7 @@
/turf/simulated/floor/tiled/monofloor{
dir = 8
},
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -16975,17 +17016,17 @@
/turf/simulated/floor/tiled/monofloor{
dir = 4
},
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aBZ" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aCa" = (
/obj/structure/grille,
/obj/structure/railing{
@@ -17475,7 +17516,7 @@
},
/obj/structure/flora/pottedplant,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aCM" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
@@ -17485,7 +17526,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aCN" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
@@ -17498,7 +17539,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aCO" = (
/turf/simulated/wall,
/area/crew_quarters/visitor_dining)
@@ -17810,7 +17851,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aDs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -17824,7 +17865,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aDt" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -17853,7 +17894,7 @@
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aDu" = (
/turf/simulated/floor/lino,
/area/crew_quarters/visitor_dining)
@@ -18081,7 +18122,7 @@
/turf/simulated/floor/tiled/monofloor{
dir = 1
},
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aDU" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 9
@@ -18097,13 +18138,13 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aDV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aDW" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -18118,7 +18159,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aDX" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -18511,7 +18552,7 @@
req_access = list()
},
/turf/simulated/floor/tiled/monofloor,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aEG" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
@@ -18525,13 +18566,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aEH" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aEI" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
@@ -18961,7 +19002,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aFu" = (
/obj/structure/cable/green{
d1 = 4;
@@ -18978,7 +19019,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aFv" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
@@ -18998,7 +19039,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aFw" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
@@ -19287,7 +19328,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aFP" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -19302,7 +19343,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aFQ" = (
/obj/structure/cable/green{
d1 = 1;
@@ -19854,7 +19895,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/computer/timeclock/premade/west,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aGw" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -19863,7 +19904,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aGx" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
@@ -20409,7 +20450,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aHl" = (
/obj/machinery/camera/network/civilian{
dir = 4
@@ -20624,7 +20665,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aHG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -20914,27 +20955,27 @@
"aIl" = (
/obj/structure/flora/pottedplant/flower,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aIm" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aIn" = (
/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aIo" = (
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aIp" = (
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aIq" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -20948,7 +20989,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aIr" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -21401,7 +21442,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -21411,7 +21452,7 @@
},
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -21428,7 +21469,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -21440,7 +21481,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -21452,7 +21493,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -21467,7 +21508,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJi" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -21483,7 +21524,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJj" = (
/obj/structure/cable/green{
d1 = 1;
@@ -21502,13 +21543,13 @@
icon_state = "pipe-j2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJk" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJl" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -21522,7 +21563,7 @@
pixel_x = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJm" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
@@ -21858,7 +21899,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJQ" = (
/obj/effect/floor_decal/borderfloor/shifted,
/obj/effect/floor_decal/corner/lightgrey/border/shifted,
@@ -21866,7 +21907,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -21876,7 +21917,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJS" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -21906,7 +21947,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJT" = (
/obj/structure/cable/green{
d1 = 2;
@@ -21923,7 +21964,7 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJU" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -21942,7 +21983,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aJV" = (
/obj/structure/bed/chair/wood{
dir = 1
@@ -22261,7 +22302,7 @@
"aKA" = (
/obj/structure/stairs/south,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKB" = (
/obj/structure/railing{
dir = 8
@@ -22277,7 +22318,7 @@
},
/obj/machinery/disposal,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKC" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -22296,7 +22337,7 @@
pixel_y = -24
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKD" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -22312,7 +22353,7 @@
},
/obj/machinery/vending/coffee,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKE" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -22325,7 +22366,7 @@
},
/obj/machinery/lapvend,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKF" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -22335,7 +22376,7 @@
},
/obj/machinery/vending/cigarette,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKG" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -22351,7 +22392,7 @@
},
/obj/structure/flora/pottedplant,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKH" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
@@ -22364,12 +22405,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKI" = (
/obj/effect/floor_decal/steeldecal/steel_decals6,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"aKJ" = (
/obj/machinery/light,
/turf/simulated/floor/lino,
@@ -27130,27 +27171,18 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aTB" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
},
-/obj/machinery/door/airlock{
- id_tag = "dorm2";
- name = "Room 2"
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
+/obj/machinery/vending/loadout/loadout_misc,
/turf/simulated/floor/tiled,
-/area/crew_quarters/sleep/Dorm_2)
+/area/crew_quarters/visitor_laundry)
"aTC" = (
/obj/structure/cable/green{
d1 = 4;
@@ -27529,85 +27561,6 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aUo" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/grey/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/structure/closet/wardrobe/white,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aUp" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/grey/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/structure/closet/wardrobe/mixed,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aUq" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/grey/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/structure/closet/wardrobe/xenos,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aUr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/grey/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/structure/closet/wardrobe/suit,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aUs" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/grey/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/structure/closet/wardrobe/black,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aUt" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/grey/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/structure/undies_wardrobe,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
-"aUu" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -27615,12 +27568,110 @@
icon_state = "bordercolor";
dir = 5
},
-/obj/structure/closet/wardrobe/pjs,
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
pixel_x = 0
},
+/obj/machinery/vending/loadout/costume,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"aUp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 10
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"aUq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/monofloor{
+ dir = 1
+ },
+/area/crew_quarters/visitor_laundry)
+"aUr" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ autoclose = 1;
+ dir = 2;
+ id_tag = null;
+ name = "Laundry";
+ req_access = list()
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central1,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/monofloor,
+/area/crew_quarters/visitor_laundry)
+"aUs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"aUt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"aUu" = (
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aUv" = (
@@ -28387,20 +28438,8 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_lodging)
"aVP" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/border{
- icon_state = "bordercolor";
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVQ" = (
@@ -28879,19 +28918,30 @@
"aWY" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/grey/border,
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/cups,
/obj/machinery/firealarm{
dir = 1;
pixel_x = 0;
pixel_y = -24
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aWZ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/grey/border,
-/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aXa" = (
@@ -28899,6 +28949,8 @@
/obj/effect/floor_decal/corner/grey/border,
/obj/structure/table/standard,
/obj/item/weapon/storage/laundry_basket,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/grey/bordercorner2,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aXb" = (
@@ -30927,7 +30979,7 @@
/turf/simulated/floor/tiled/monofloor{
dir = 8
},
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbj" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
@@ -30936,7 +30988,7 @@
/turf/simulated/floor/tiled/monofloor{
dir = 4
},
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbk" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -30958,7 +31010,7 @@
pixel_y = 26
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbl" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -30978,7 +31030,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbm" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -30994,7 +31046,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31006,7 +31058,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbo" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31021,7 +31073,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbp" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -31042,7 +31094,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbq" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -31065,7 +31117,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -31128,7 +31180,7 @@
pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbu" = (
/obj/structure/disposalpipe/junction{
dir = 8
@@ -31137,7 +31189,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbv" = (
/obj/structure/cable/green{
d1 = 4;
@@ -31369,7 +31421,7 @@
/area/hallway/lower/first_west)
"bbQ" = (
/turf/simulated/mineral,
-/area/tether/surfacebase/atrium_one)
+/area/tether/surfacebase/surface_one_hall)
"bbR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31535,6 +31587,19 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"bcj" = (
+/obj/machinery/door/airlock/glass{
+ name = "Dressing Room"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"bck" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
@@ -31678,6 +31743,152 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
+"bcD" = (
+/obj/structure/closet/wardrobe/black,
+/obj/random/maintenance/clean,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcE" = (
+/obj/structure/closet/wardrobe/white,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcG" = (
+/obj/structure/undies_wardrobe,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcH" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcK" = (
+/obj/structure/closet/wardrobe/xenos,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcL" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/grey/border,
+/obj/structure/table/bench/standard,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcM" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/grey/border,
+/obj/machinery/light/small,
+/obj/structure/table/bench/standard,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bcN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ icon_state = "bordercolor";
+ dir = 6
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"cGJ" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
@@ -46445,12 +46656,12 @@ aRm
aPK
aSo
aSo
-aTB
+aqS
aSo
aUm
aUm
-acw
-acz
+aUq
+aUr
aUm
aWn
aWn
@@ -46590,10 +46801,10 @@ aSV
aTC
aSo
aUn
-afZ
+aUp
aVd
aVz
-aVP
+aUt
aWo
aWM
aWV
@@ -46731,7 +46942,7 @@ aSq
aSW
aTD
aSo
-aUo
+acw
aUP
aVe
aVA
@@ -46873,7 +47084,7 @@ aSr
aSX
aTE
aSo
-aUp
+acz
aUP
aVf
aVB
@@ -46882,10 +47093,10 @@ aUP
aUP
aWX
aUm
-aah
-aah
-aah
-aah
+bcD
+bcI
+bcK
+aUm
aah
aah
aah
@@ -47015,7 +47226,7 @@ aSs
aSY
aTF
aSo
-aUq
+afZ
aUP
aVf
aVB
@@ -47024,10 +47235,10 @@ aUP
aUP
aWY
aUm
-aah
-aah
-aah
-aah
+bcE
+aUP
+bcL
+aUm
aah
aah
aah
@@ -47157,14 +47368,18 @@ aSt
aSX
aTG
aSo
-aUr
+arm
aUP
aVf
-aVB
-aVf
-aUP
-aUP
+aUs
+aUu
+aVP
+aVP
aWZ
+bcj
+bcF
+aUP
+bcM
aUm
aah
aah
@@ -47173,10 +47388,6 @@ aah
aah
aah
aah
-aah
-aah
-aah
-aah
aad
aad
aad
@@ -47299,7 +47510,7 @@ aSo
aSZ
aSo
aSo
-aUs
+arD
aUP
aVf
aVB
@@ -47308,10 +47519,10 @@ aUP
aUP
aXa
aUm
-aah
-aah
-aah
-aah
+bcG
+aUP
+bcL
+aUm
aah
aah
aah
@@ -47441,7 +47652,7 @@ aSu
aTa
aTH
aSo
-aUt
+aTB
aUP
aVg
aVC
@@ -47450,10 +47661,10 @@ aWp
aWp
aXb
aUm
-aah
-aah
-aah
-aah
+bcH
+bcJ
+bcN
+aUm
aah
aah
aah
@@ -47583,7 +47794,7 @@ aSv
aTb
aTI
aSo
-aUu
+aUo
aUQ
aVh
aUP
@@ -47592,10 +47803,10 @@ aga
aWN
aXc
aUm
-aah
-aah
-aah
-aah
+aUm
+aUm
+aUm
+aUm
aah
aah
aah
diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm
index 0d3b2cb9b6..35bfcb7905 100644
--- a/maps/tether/tether-02-surface2.dmm
+++ b/maps/tether/tether-02-surface2.dmm
@@ -13,7 +13,7 @@
/area/maintenance/lower/mining)
"aae" = (
/turf/simulated/wall/r_wall,
-/area/bridge/secondary/meeting_room)
+/area/maintenance/lower/public_garden_maintenence/upper)
"aaf" = (
/turf/simulated/wall,
/area/tether/surfacebase/medical/lowerhall)
@@ -48,8 +48,21 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"aak" = (
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
"aal" = (
/obj/effect/floor_decal/rust,
/obj/effect/decal/cleanable/dirt,
@@ -66,9 +79,9 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/public_garden_maintenence/upper)
"aam" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
+/obj/structure/stairs/south,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
"aan" = (
/turf/simulated/wall,
/area/maintenance/substation/medsec)
@@ -87,6 +100,39 @@
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/medical/lowerhall)
"aas" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat{
+ ammo_type = /obj/item/ammo_casing/a12g/beanbag;
+ desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
+ name = "warden's shotgun"
+ },
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aat" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"aau" = (
+/obj/structure/stairs/west,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aav" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
@@ -104,28 +150,8 @@
/obj/machinery/light{
dir = 8
},
-/obj/machinery/camera/network/medbay,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/surgery)
-"aat" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
-"aau" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
-"aav" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/blue,
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
"aaw" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "MedSec Substation Bypass"
@@ -150,12 +176,20 @@
/turf/simulated/floor,
/area/maintenance/substation/medsec)
"aay" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
},
-/obj/machinery/camera/network/engineering,
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
+/obj/effect/floor_decal/corner/white/border{
+ dir = 5
+ },
+/obj/structure/table/standard,
+/obj/item/device/defib_kit/loaded,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery)
"aaz" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -231,18 +265,12 @@
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
-/obj/effect/floor_decal/corner/white/border{
+/obj/effect/floor_decal/corner/paleblue/border{
dir = 5
},
-/obj/structure/table/standard,
-/obj/item/device/defib_kit/loaded,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/camera/network/medbay,
+/obj/machinery/organ_printer/flesh,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
+/area/tether/surfacebase/medical/resleeving)
"aaF" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
@@ -272,32 +300,26 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/resleeving)
"aaI" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 8
+/obj/effect/floor_decal/techfloor{
+ dir = 9
},
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
"aaJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
+/obj/machinery/vending/medical,
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aaK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -403,6 +425,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
/turf/simulated/floor,
/area/maintenance/substation/medsec)
"aaU" = (
@@ -469,16 +494,21 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/resleeving)
"aaX" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/organ_printer/flesh,
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhallway)
"aaY" = (
/obj/effect/floor_decal/techfloor{
dir = 9
@@ -1238,20 +1268,14 @@
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
"acN" = (
-/obj/structure/closet/secure_closet/RD,
-/obj/item/device/aicard,
-/obj/item/clothing/glasses/omnihud/rnd,
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 9
- },
-/obj/machinery/camera/network/research{
- dir = 4
+/obj/structure/bed/chair{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
+/area/tether/surfacebase/security/solitary)
"acO" = (
/obj/structure/sign/nanotrasen,
/turf/simulated/wall,
@@ -1284,15 +1308,9 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/mining)
"acT" = (
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 6
- },
/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"acU" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -1304,7 +1322,7 @@
pixel_y = 22
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"acV" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
@@ -1818,7 +1836,7 @@
/area/maintenance/lower/north)
"adY" = (
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"adZ" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -1973,7 +1991,7 @@
scrub_id = "atrium"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aeo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
@@ -2141,7 +2159,7 @@
name = "Maintenance Access"
},
/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aeJ" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable{
@@ -2153,12 +2171,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aeK" = (
/obj/structure/grille,
/obj/structure/railing,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aeL" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -2168,13 +2186,13 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aeM" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/structure/catwalk,
/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aeN" = (
/obj/effect/floor_decal/rust,
/obj/effect/decal/cleanable/dirt,
@@ -2287,7 +2305,7 @@
pixel_x = 0
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afb" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -2297,7 +2315,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afc" = (
/obj/structure/cable{
d1 = 1;
@@ -2317,26 +2335,26 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
dir = 4
},
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/tether,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhallway)
"afe" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2351,7 +2369,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aff" = (
/obj/machinery/light/small{
dir = 1
@@ -2369,7 +2387,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afg" = (
/obj/structure/cable{
d1 = 4;
@@ -2387,7 +2405,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afh" = (
/obj/structure/cable{
d1 = 4;
@@ -2405,7 +2423,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afi" = (
/obj/structure/cable{
d1 = 4;
@@ -2420,7 +2438,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afj" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2439,7 +2457,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afk" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2457,7 +2475,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afl" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2478,7 +2496,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afm" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2497,7 +2515,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afn" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2506,7 +2524,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afo" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2518,7 +2536,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afp" = (
/obj/machinery/light/small{
dir = 1
@@ -2530,20 +2548,21 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afq" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/effect/floor_decal/borderfloorblack,
+/obj/structure/closet{
+ name = "Evidence Closet"
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
+/obj/machinery/alarm{
+ alarm_id = null;
+ breach_detection = 0;
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/tether,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
"afr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -2554,7 +2573,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afs" = (
/obj/structure/disposalpipe/junction{
dir = 8
@@ -2563,7 +2582,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aft" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -2575,7 +2594,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afu" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -2588,7 +2607,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afv" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 8
@@ -2652,13 +2671,13 @@
pixel_x = -32
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afC" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afD" = (
/obj/structure/cable{
d1 = 1;
@@ -2673,39 +2692,39 @@
dir = 9
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afF" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afG" = (
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afH" = (
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afI" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -2714,19 +2733,19 @@
dir = 10
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afL" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afM" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afN" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -2832,14 +2851,14 @@
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afW" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afX" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/green/bordercorner,
@@ -2853,7 +2872,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afY" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
@@ -2862,7 +2881,7 @@
},
/obj/structure/window/basic,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"afZ" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -2880,7 +2899,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aga" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -2893,7 +2912,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agb" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 8
@@ -2936,11 +2955,11 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agg" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agh" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -2958,7 +2977,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agi" = (
/obj/structure/railing{
dir = 1
@@ -2967,40 +2986,30 @@
dir = 8
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agj" = (
/obj/structure/railing{
dir = 1
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agk" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
-"agl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
+"agl" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/commandmaint)
"agm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agn" = (
/obj/machinery/light/small{
dir = 8
@@ -3066,16 +3075,16 @@
dir = 8
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agw" = (
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agx" = (
/obj/structure/railing{
dir = 4
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -3084,7 +3093,7 @@
sortType = "Trash"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agz" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -3097,14 +3106,14 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agA" = (
/obj/structure/grille,
/obj/structure/railing{
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/railing{
@@ -3157,7 +3166,7 @@
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agH" = (
/obj/machinery/light/small{
dir = 4
@@ -3170,7 +3179,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agI" = (
/obj/structure/railing{
dir = 8
@@ -3231,7 +3240,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agS" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
@@ -3239,7 +3248,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"agT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3298,11 +3307,11 @@
/turf/simulated/wall,
/area/tether/surfacebase/north_staires_two)
"ahd" = (
-/obj/machinery/camera/network/tether{
- dir = 4
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/open,
-/area/tether/surfacebase/north_staires_two)
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
"ahe" = (
/obj/structure/sign/directions/medical{
dir = 1;
@@ -3332,31 +3341,27 @@
"ahg" = (
/obj/structure/sign/warning/caution,
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahh" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/suit_cycler/medical,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/paramed)
+"ahi" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/bed/chair/wheelchair{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/machinery/camera/network/tether{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
-"ahi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"ahj" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -3424,13 +3429,13 @@
/turf/simulated/floor/tiled/monofloor{
dir = 1
},
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahu" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 9
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahv" = (
/obj/effect/floor_decal/techfloor{
dir = 9
@@ -3459,12 +3464,15 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/bar)
"ahy" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"ahz" = (
/obj/effect/floor_decal/techfloor{
dir = 5
@@ -3545,7 +3553,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahH" = (
/obj/machinery/light/small{
dir = 1
@@ -3572,7 +3580,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahJ" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -3596,7 +3604,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/turf/simulated/floor/tiled/monofloor,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahK" = (
/obj/structure/cable{
d1 = 4;
@@ -3614,7 +3622,7 @@
dir = 6
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahL" = (
/obj/structure/cable{
d1 = 4;
@@ -3630,7 +3638,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahM" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -3647,7 +3655,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahN" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -3657,14 +3665,16 @@
pixel_x = 25
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahO" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
-/obj/structure/stairs/west,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"ahP" = (
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/bar)
@@ -3730,7 +3740,7 @@
name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"
},
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ahZ" = (
/obj/machinery/light/small{
dir = 8;
@@ -3743,7 +3753,7 @@
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aia" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -3755,7 +3765,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aib" = (
/obj/machinery/light/small{
dir = 4
@@ -3764,7 +3774,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aic" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -3989,7 +3999,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aiz" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -4005,7 +4015,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aiA" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
@@ -4054,11 +4064,11 @@
dir = 5
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aiF" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aiG" = (
/obj/machinery/door/airlock{
name = "Noodle Office";
@@ -4199,16 +4209,16 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
"aiW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ name = "Command Meeting Room";
+ sortType = "Command Meeting Room"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aiX" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -4257,7 +4267,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajb" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/supply{
@@ -4296,7 +4306,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aje" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -4364,7 +4374,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -4373,7 +4383,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -4382,11 +4392,11 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajp" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
@@ -4502,7 +4512,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajC" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -4519,7 +4529,7 @@
dir = 5
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajD" = (
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
@@ -4537,6 +4547,9 @@
/obj/effect/floor_decal/corner/lime/border{
dir = 5
},
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
"ajG" = (
@@ -4556,26 +4569,22 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajJ" = (
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
"ajK" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
dir = 5
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
"ajL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -4593,7 +4602,7 @@
/obj/structure/catwalk,
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajM" = (
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside2)
@@ -4645,13 +4654,13 @@
pixel_x = -32
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajR" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajS" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -4665,28 +4674,19 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ajT" = (
/turf/simulated/wall,
/area/chapel/chapel_morgue)
"ajU" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/machinery/camera/network/civilian{
- dir = 8
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
},
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
"ajV" = (
/obj/structure/extinguisher_cabinet{
dir = 1;
@@ -4796,11 +4796,13 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
"akg" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
+/obj/machinery/vending/hydronutrients,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
},
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"akh" = (
/obj/machinery/firealarm{
dir = 2;
@@ -4874,15 +4876,36 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/public_garden_maintenence/upper)
"ako" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/effect/floor_decal/borderfloor{
- dir = 9
+ dir = 4
},
-/obj/effect/floor_decal/corner/lime/border{
- dir = 9
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
},
-/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
+/area/tether/surfacebase/security/lowerhallway)
"akp" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
@@ -5319,6 +5342,9 @@
dir = 2;
pixel_y = -24
},
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
"alc" = (
@@ -5439,6 +5465,9 @@
/obj/item/weapon/material/fishing_net,
/obj/item/weapon/material/fishing_net,
/obj/item/weapon/material/fishing_net,
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/fish_farm)
"als" = (
@@ -5448,13 +5477,22 @@
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/fish_farm)
"alt" = (
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
+/obj/structure/table/bench/standard,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
"alu" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -5466,15 +5504,23 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/fish_farm)
"alv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/machinery/camera/network/civilian{
- icon_state = "camera";
- dir = 10
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"alw" = (
/obj/effect/floor_decal/rust,
/obj/structure/cable{
@@ -5492,7 +5538,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alx" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -5583,25 +5629,17 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/fish_farm)
"alG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/machinery/camera/network/tether{
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"alH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -5616,7 +5654,7 @@
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lightgrey/bordercorner,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5634,7 +5672,7 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5653,7 +5691,7 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alK" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -5668,7 +5706,7 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alL" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -5784,7 +5822,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alR" = (
/obj/machinery/alarm{
dir = 4;
@@ -5845,7 +5883,7 @@
/obj/effect/floor_decal/borderfloor/corner2,
/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -5861,7 +5899,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"alZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -5882,7 +5920,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ama" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
@@ -5902,7 +5940,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"amb" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -5913,7 +5951,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"amc" = (
/obj/structure/catwalk,
/obj/effect/decal/cleanable/dirt,
@@ -5934,11 +5972,14 @@
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
"amf" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/fish_farm)
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"amg" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -6005,7 +6046,7 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"amk" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -6016,7 +6057,7 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aml" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -6029,7 +6070,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"amm" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -6185,16 +6226,17 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
"amA" = (
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/machinery/camera/network/civilian{
- icon_state = "camera";
- dir = 10
+/obj/machinery/light_switch{
+ dir = 1;
+ on = 0;
+ pixel_x = -10;
+ pixel_y = -24
},
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"amB" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -6264,7 +6306,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/random/drinkbottle,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"amL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -6324,6 +6366,9 @@
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
/mob/living/simple_mob/animal/passive/mouse/white,
/turf/simulated/floor/grass,
/area/chapel/office)
@@ -6423,17 +6468,17 @@
/area/maintenance/lower/rnd)
"anc" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/camera/network/tether{
dir = 4
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"and" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ane" = (
/obj/structure/table/woodentable,
/obj/item/weapon/storage/box/snakesnackbox,
@@ -6539,9 +6584,12 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
"ano" = (
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/reinforced,
-/area/maintenance/lower/rnd)
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
"anp" = (
/obj/machinery/light{
dir = 1
@@ -6562,7 +6610,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ans" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -6571,11 +6619,11 @@
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ant" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"anu" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -6587,22 +6635,13 @@
dir = 6
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"anv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Command Substation Bypass"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
"anw" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -6615,10 +6654,35 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
+"anx" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
"any" = (
/turf/simulated/mineral,
/area/maintenance/lower/bar)
+"anz" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
"anA" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -6704,6 +6768,9 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
+"anK" = (
+/turf/simulated/wall/r_wall,
+/area/teleporter)
"anL" = (
/obj/structure/railing{
dir = 4
@@ -6871,12 +6938,42 @@
hard_corner = 1
},
/area/tether/elevator)
+"aoa" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aob" = (
+/turf/simulated/wall/r_wall,
+/area/bridge_hallway)
+"aoc" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"aod" = (
/obj/effect/floor_decal/corner_techfloor_grid{
dir = 6
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
+"aoe" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aof" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_tele,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"aog" = (
/obj/structure/railing{
dir = 4
@@ -7119,7 +7216,7 @@
dir = 2
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoz" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -7128,30 +7225,30 @@
pixel_y = 30
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoA" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoB" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 8
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoC" = (
/obj/structure/railing,
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoD" = (
/obj/structure/railing{
dir = 4
},
/obj/structure/railing,
/turf/simulated/open,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoE" = (
/turf/simulated/wall,
/area/chapel/office)
@@ -7190,16 +7287,11 @@
},
/area/server)
"aoJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6;
- icon_state = "intact"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"aoK" = (
/obj/effect/floor_decal/techfloor{
dir = 5
@@ -7266,6 +7358,10 @@
/obj/effect/floor_decal/corner/mauve/border{
dir = 4
},
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
"aoQ" = (
@@ -7332,28 +7428,26 @@
"aoV" = (
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoW" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoX" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/machinery/light/small{
- dir = 1
- },
+/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aoZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7362,7 +7456,7 @@
pixel_y = 30
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apa" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7372,7 +7466,7 @@
pixel_y = 22
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apb" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7381,7 +7475,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7389,13 +7483,13 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apd" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ape" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -7404,7 +7498,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apf" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7416,16 +7510,33 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apg" = (
-/obj/effect/floor_decal/borderfloor/corner{
+/obj/structure/cable/green{
+ icon_state = "4-8";
dir = 1
},
-/obj/effect/floor_decal/corner/green/bordercorner{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aph" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
"api" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -7447,6 +7558,70 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
+"apk" = (
+/obj/machinery/computer/teleporter{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"apl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"apm" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/device/gps/command,
+/obj/item/device/gps/command,
+/obj/item/device/gps/command,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"apn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"apo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"app" = (
/turf/simulated/floor/outdoors/dirt/virgo3b,
/area/tether/surfacebase/outside/outside2)
@@ -7568,19 +7743,16 @@
/turf/simulated/floor,
/area/maintenance/substation/research)
"apB" = (
-/obj/effect/floor_decal/industrial/warning/corner{
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/tether{
dir = 1
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/engineering{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/substation/research)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"apC" = (
/obj/structure/cable/green{
d1 = 4;
@@ -7648,7 +7820,7 @@
"apH" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -7657,7 +7829,7 @@
dir = 5
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -7666,7 +7838,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -7677,12 +7849,12 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -7695,7 +7867,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -7707,7 +7879,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -7725,7 +7897,7 @@
sortType = "Janitor Closet"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"apP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -7740,7 +7912,91 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
+"apQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/command{
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/bridge_hallway)
+"apR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"apS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"apT" = (
+/obj/structure/stairs/north,
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"apU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"apV" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"apW" = (
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"apX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/network/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"apY" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"apZ" = (
+/obj/machinery/teleport/station{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"aqa" = (
/obj/structure/catwalk,
/obj/effect/decal/cleanable/dirt,
@@ -7878,18 +8134,31 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqp" = (
/obj/effect/floor_decal/borderfloor/corner,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqq" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/machinery/camera/network/tether{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/obj/effect/floor_decal/borderfloor{
+ dir = 8;
+ icon_state = "borderfloor";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
"aqr" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/firealarm{
@@ -7899,12 +8168,12 @@
},
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqs" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqt" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -7912,7 +8181,7 @@
},
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqu" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
@@ -7926,7 +8195,7 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqv" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -7943,7 +8212,7 @@
},
/obj/effect/floor_decal/corner/yellow/bordercorner2,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -7955,7 +8224,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqx" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
@@ -7963,15 +8232,22 @@
/obj/effect/floor_decal/corner/yellow/bordercorner2,
/obj/machinery/light/small,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqy" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/machinery/camera/network/tether{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"aqz" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -7983,13 +8259,13 @@
},
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqA" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/light/small,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqB" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/newscaster{
@@ -7997,21 +8273,21 @@
pixel_y = -30
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqC" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/industrial/danger,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqD" = (
/obj/effect/floor_decal/borderfloor,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqE" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/light/small,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -8032,16 +8308,39 @@
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aqG" = (
/obj/effect/floor_decal/borderfloor{
- dir = 6
+ dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
+/obj/machinery/camera/network/tether{
+ dir = 9
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
+"aqH" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aqI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aqJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aqK" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"aqL" = (
/obj/structure/railing{
dir = 8
@@ -8173,34 +8472,10 @@
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
"aqT" = (
-/obj/structure/table/standard,
-/obj/item/device/taperecorder{
- pixel_x = -3
- },
-/obj/item/device/paicard{
- pixel_x = 4
- },
-/obj/item/weapon/circuitboard/teleporter,
-/obj/item/weapon/circuitboard/aicore{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 6
- },
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
"aqU" = (
/obj/structure/closet/secure_closet/scientist,
/obj/effect/floor_decal/industrial/outline,
@@ -8218,6 +8493,7 @@
/obj/structure/closet/secure_closet/scientist,
/obj/effect/floor_decal/industrial/outline,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/research,
/turf/simulated/floor/tiled/dark,
/area/rnd/lockers)
"aqX" = (
@@ -8232,18 +8508,25 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/lockers)
"aqY" = (
-/obj/structure/closet/secure_closet/scientist,
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/camera/network/research{
- dir = 8
+/obj/structure/closet/wardrobe/chaplain_black,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lockers)
+/turf/simulated/floor/lino,
+/area/chapel/office)
"aqZ" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"ara" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -8253,7 +8536,7 @@
pixel_y = -30
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"arb" = (
/obj/structure/sign/warning/caution{
name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"
@@ -8301,7 +8584,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"arj" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -8329,9 +8612,46 @@
"arl" = (
/turf/simulated/wall,
/area/tether/surfacebase/east_stairs_two)
+"arm" = (
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"arn" = (
+/obj/machinery/teleport/hub{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"aro" = (
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"arp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"arq" = (
+/obj/structure/morgue/crematorium,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"arr" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ dir = 2;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
"ars" = (
/obj/structure/railing{
dir = 4
@@ -8731,6 +9051,37 @@
"arZ" = (
/turf/simulated/wall,
/area/maintenance/lower/south)
+"asa" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"asb" = (
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access = list(17)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"asc" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/meeting_room)
+"asd" = (
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access = list(17)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/meeting_room)
"ase" = (
/obj/machinery/door/morgue{
dir = 2;
@@ -8739,6 +9090,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"asf" = (
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access = list(17)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/meeting_room)
"asg" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -9122,14 +9488,17 @@
/turf/simulated/floor/plating,
/area/tether/surfacebase/emergency_storage/atmos)
"asB" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/obj/machinery/camera/network/engineering,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"asC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red{
icon_state = "intact";
@@ -9229,6 +9598,34 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
+"asO" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"asP" = (
+/obj/machinery/keycard_auth{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"asQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"asR" = (
/obj/machinery/computer/rdservercontrol{
dir = 1
@@ -9248,6 +9645,9 @@
"asT" = (
/obj/structure/table/steel,
/obj/effect/floor_decal/techfloor,
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/server)
"asU" = (
@@ -9296,23 +9696,8 @@
/turf/simulated/floor/tiled,
/area/rnd/staircase/secondfloor)
"asZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 6
- },
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
+/turf/simulated/floor/reinforced,
+/area/maintenance/lower/rnd)
"ata" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
@@ -9570,6 +9955,18 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
+"atu" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"atv" = (
/obj/structure/railing{
dir = 8
@@ -9634,12 +10031,17 @@
/turf/simulated/wall,
/area/rnd/breakroom)
"atC" = (
-/obj/structure/bed/chair/comfy,
-/obj/machinery/camera/network/research{
- dir = 4
+/obj/structure/closet/secure_closet/RD,
+/obj/item/device/aicard,
+/obj/item/clothing/glasses/omnihud/rnd,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
},
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
"atD" = (
/obj/machinery/firealarm{
dir = 2;
@@ -9703,15 +10105,15 @@
/turf/simulated/floor/wood,
/area/rnd/breakroom)
"atK" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6;
+ icon_state = "intact"
},
-/obj/machinery/camera/network/research,
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
"atL" = (
/obj/structure/table/rack{
dir = 1
@@ -9863,6 +10265,9 @@
/obj/structure/table/glass,
/obj/item/weapon/storage/box/cups,
/obj/item/weapon/storage/box/cups,
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/engineering/lower/breakroom)
"auc" = (
@@ -10094,6 +10499,9 @@
/obj/structure/bed/chair{
dir = 1
},
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/engineering/lower/lobby)
"auB" = (
@@ -10198,11 +10606,19 @@
/turf/simulated/floor/wood,
/area/engineering/lower/breakroom)
"auK" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/camera/network/engineering{
dir = 1
},
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
+/turf/simulated/floor,
+/area/maintenance/substation/research)
"auL" = (
/obj/structure/table/glass,
/obj/machinery/chemical_dispenser/bar_soft/full,
@@ -10454,17 +10870,36 @@
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
"avi" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
},
-/obj/machinery/camera/network/tether{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"avj" = (
+/obj/machinery/light_switch{
+ dir = 2;
+ name = "light switch ";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"avk" = (
/obj/effect/floor_decal/corner_techfloor_grid{
dir = 5
@@ -10529,6 +10964,24 @@
/obj/structure/catwalk,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
+"avq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"avr" = (
/obj/structure/railing{
dir = 4
@@ -10642,6 +11095,7 @@
dir = 9
},
/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/camera/network/engineering,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
"avC" = (
@@ -10793,13 +11247,31 @@
/turf/simulated/wall/r_wall,
/area/engineering/atmos/storage)
"avL" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/shieldgen,
-/obj/machinery/camera/network/engineering{
- dir = 4
+/obj/structure/table/standard,
+/obj/item/device/taperecorder{
+ pixel_x = -3
},
-/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
+/obj/item/device/paicard{
+ pixel_x = 4
+ },
+/obj/item/weapon/circuitboard/teleporter,
+/obj/item/weapon/circuitboard/aicore{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
"avM" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -10882,6 +11354,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
"avV" = (
@@ -11442,7 +11917,13 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
"awV" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/camera/network/research,
/turf/simulated/floor/wood,
/area/rnd/breakroom)
"awW" = (
@@ -11771,18 +12252,19 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
"axv" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28
},
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/obj/machinery/camera/network/engineering{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
"axw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
@@ -11945,22 +12427,24 @@
/turf/simulated/floor/tiled/monotile,
/area/rnd/breakroom)
"axO" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
dir = 8
},
-/obj/machinery/vending/coffee,
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/turf/simulated/floor/tiled/monotile,
-/area/rnd/breakroom)
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
"axP" = (
/obj/effect/floor_decal/steeldecal/steel_decals9,
/obj/effect/floor_decal/steeldecal/steel_decals9{
@@ -11991,6 +12475,9 @@
dir = 9
},
/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
"axR" = (
@@ -12126,23 +12613,9 @@
/turf/simulated/floor/tiled/monotile,
/area/engineering/atmos)
"aya" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/network/engineering{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
+/obj/structure/bed/chair/comfy,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
"ayb" = (
/obj/machinery/light_switch{
pixel_y = -28
@@ -12216,6 +12689,7 @@
icon_state = "bordercolor_shifted";
dir = 1
},
+/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled,
/area/janitor)
"ayj" = (
@@ -12840,6 +13314,7 @@
icon_state = "bordercolor";
dir = 9
},
+/obj/machinery/camera/network/engineering,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"azn" = (
@@ -13642,16 +14117,12 @@
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aAi" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/engineering{
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/camera/network/research{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
"aAj" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
@@ -13897,17 +14368,14 @@
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aAA" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/red{
- icon_state = "intact";
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/machinery/camera/network/engineering{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
"aAB" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -13932,6 +14400,9 @@
icon_state = "bordercolor";
dir = 6
},
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aAD" = (
@@ -14518,32 +14989,19 @@
/turf/simulated/open,
/area/engineering/atmos)
"aBF" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/border{
- icon_state = "bordercolor";
- dir = 9
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera/network/engineering{
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "atmos_out";
- name = "Atmos Intake Control";
- output_tag = "atmos_in";
- sensors = list("atmos_intake" = "Tank")
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/engineering/atmos/monitoring)
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled/monotile,
+/area/rnd/breakroom)
"aBG" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -15065,11 +15523,23 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
"aCI" = (
-/obj/machinery/camera/network/tether{
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
"aCJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -15441,15 +15911,13 @@
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
"aDs" = (
-/obj/effect/floor_decal/techfloor/corner,
-/obj/machinery/drone_fabricator{
- fabricator_tag = "Atmos"
- },
-/obj/machinery/camera/network/engineering{
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/engineering/drone_fabrication)
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
"aDt" = (
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor/grid,
@@ -15478,14 +15946,15 @@
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
"aDx" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/machinery/computer/atmos_alert{
- icon_state = "computer";
- dir = 1
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/engineering/atmos/monitoring)
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/pumpstation)
"aDy" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -16292,11 +16761,13 @@
/turf/simulated/open,
/area/engineering/atmos)
"aFw" = (
-/obj/structure/catwalk,
-/obj/machinery/camera/network/engineering{
- dir = 1
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ icon_state = "intact";
+ dir = 4
},
-/turf/simulated/open,
+/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aFx" = (
/obj/structure/catwalk,
@@ -16990,11 +17461,29 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
"aGS" = (
-/obj/machinery/camera/network/outside{
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ icon_state = "bordercolor";
+ dir = 9
+ },
+/obj/machinery/light{
dir = 1
},
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "atmos_out";
+ name = "Atmos Intake Control";
+ output_tag = "atmos_in";
+ sensors = list("atmos_intake" = "Tank")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
"aGT" = (
/obj/structure/plushie/drone{
icon_state = "droneplushie";
@@ -17193,10 +17682,6 @@
icon_state = "tube1";
pixel_y = 0
},
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28
- },
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aHt" = (
@@ -17268,19 +17753,15 @@
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aHz" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 21
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
},
-/obj/machinery/alarm{
- pixel_x = 0;
- pixel_y = 30
+/obj/machinery/camera/network/engineering{
+ dir = 4
},
-/obj/machinery/camera/network/research,
-/obj/machinery/computer/security/xenobio,
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
+/turf/simulated/open,
+/area/engineering/atmos)
"aHA" = (
/obj/machinery/smartfridge/secure/extract,
/turf/simulated/floor/tiled/white,
@@ -17312,10 +17793,6 @@
/obj/machinery/light{
dir = 4
},
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aHD" = (
@@ -17414,18 +17891,18 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
"aHO" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
},
-/obj/machinery/camera/network/engineering,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/alarm{
+ pixel_x = 0;
+ pixel_y = 30
},
-/turf/simulated/floor/plating,
-/area/maintenance/substation/tcomms)
+/obj/machinery/computer/security/xenobio,
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
"aHP" = (
/turf/simulated/wall/r_wall,
/area/tcommsat/computer)
@@ -17484,35 +17961,17 @@
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aHV" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv7";
- name = "Divider 7 Blast Doors";
- pixel_x = -30;
- pixel_y = -5;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen9";
- name = "Pen 9 Containment";
- pixel_x = -30;
- pixel_y = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera/network/research{
- dir = 4
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/power/apc/super{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
+/turf/simulated/floor/plating,
+/area/maintenance/substation/tcomms)
"aHW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -17693,6 +18152,9 @@
icon_state = "1-8"
},
/obj/machinery/light/small,
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
"aIq" = (
@@ -17984,11 +18446,13 @@
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
"aIX" = (
-/obj/machinery/camera/network/outside{
- dir = 8
+/obj/machinery/alarm/monitor/isolation{
+ alarm_id = "slime_pens";
+ dir = 4;
+ pixel_x = -22
},
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
"aIY" = (
/obj/machinery/door/blast/regular{
id = "xenobiodiv1";
@@ -18036,6 +18500,22 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aJc" = (
+/obj/machinery/alarm/monitor/isolation{
+ alarm_id = "slime_pens";
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"aJd" = (
+/obj/machinery/door/blast/regular{
+ id = "xenobiodiv2";
+ layer = 8;
+ name = "Divider 2 Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"aJe" = (
/obj/machinery/button/remote/blast_door{
id = "xenobiodiv2";
name = "Divider 2 Blast Doors";
@@ -18057,25 +18537,8 @@
pixel_y = -8;
req_access = list(55)
},
-/obj/machinery/camera/network/research{
- dir = 8
- },
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJd" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv2";
- layer = 8;
- name = "Divider 2 Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJe" = (
-/obj/machinery/camera/network/outside{
- dir = 4
- },
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
"aJf" = (
/obj/structure/morgue,
/turf/simulated/floor/plating,
@@ -19359,26 +19822,28 @@
/obj/machinery/button/remote/blast_door{
id = "xenobiopen5";
name = "Pen 5 Containment";
- pixel_x = -30;
+ pixel_x = -20;
pixel_y = -8;
req_access = list(55)
},
/obj/machinery/button/remote/blast_door{
id = "xenobiopen3";
name = "Pen 3 Containment";
- pixel_x = -30;
+ pixel_x = -20;
pixel_y = 8;
req_access = list(55)
},
/obj/machinery/button/remote/blast_door{
id = "xenobiodiv3";
name = "Divider 3 Blast Doors";
- pixel_x = -38;
+ pixel_x = -25;
pixel_y = 0;
req_access = list(55)
},
-/obj/machinery/camera/network/research{
- dir = 4
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
@@ -19918,16 +20383,28 @@
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aMn" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 4;
- network = list("Xenobiology")
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv6";
+ name = "Divider 6 Blast Doors";
+ pixel_x = 38;
+ pixel_y = 0;
+ req_access = list(55)
},
-/obj/machinery/alarm/monitor/isolation{
- alarm_id = "slime_pens";
- dir = 4;
- pixel_x = -22
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen6";
+ name = "Pen 6 Containment";
+ pixel_x = 30;
+ pixel_y = 8;
+ req_access = list(55)
},
-/turf/simulated/floor/reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen8";
+ name = "Pen 8 Containment";
+ pixel_x = 30;
+ pixel_y = -8;
+ req_access = list(55)
+ },
+/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aMo" = (
/obj/machinery/light/small{
@@ -20205,59 +20682,18 @@
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aMQ" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv5";
- name = "Divider 5 Blast Doors";
- pixel_x = -38;
- pixel_y = 0;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen5";
- name = "Pen 5 Containment";
- pixel_x = -30;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen7";
- name = "Pen 7 Containment";
- pixel_x = -30;
- pixel_y = -8;
- req_access = list(55)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aMR" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv6";
- name = "Divider 6 Blast Doors";
- pixel_x = 38;
- pixel_y = 0;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen6";
- name = "Pen 6 Containment";
- pixel_x = 30;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen8";
- name = "Pen 8 Containment";
- pixel_x = 30;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/camera/network/research{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aMS" = (
@@ -20561,14 +20997,10 @@
},
/area/tcommsat/chamber)
"aNu" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28
- },
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aNv" = (
/obj/machinery/door/blast/regular{
@@ -21007,16 +21439,30 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aOk" = (
-/obj/machinery/alarm/monitor/isolation{
- alarm_id = "slime_pens";
- dir = 4;
- pixel_x = -22
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv8";
+ name = "Divider 8 Blast Doors";
+ pixel_x = 30;
+ pixel_y = -5;
+ req_access = list(55)
},
-/obj/machinery/camera/network/research/xenobio{
- dir = 4;
- network = list("Xenobiology")
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen10";
+ name = "Pen 10 Containment";
+ pixel_x = 30;
+ pixel_y = 8
},
-/turf/simulated/floor/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "phoroncelldoor10";
+ name = "Phoron Cell 10 Doorlock";
+ pixel_x = 38;
+ pixel_y = 0;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aOl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -21061,17 +21507,18 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
"aOo" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 8;
- network = list("Xenobiology")
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/alarm/monitor/isolation{
- alarm_id = "slime_pens";
- dir = 8;
- pixel_x = 22
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"aOp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -21155,12 +21602,12 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aOw" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 8;
- network = list("Xenobiology")
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 4
},
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"aOx" = (
/obj/machinery/light{
dir = 8
@@ -21182,6 +21629,7 @@
opacity = 0
},
/obj/machinery/door/airlock/research{
+ id_tag = "phoroncelldoor9";
name = "Slime Pen 9";
req_access = list();
req_one_access = list(47,55)
@@ -21204,6 +21652,7 @@
opacity = 0
},
/obj/machinery/door/airlock/research{
+ id_tag = "phoroncelldoor10";
name = "Slime Pen 10";
req_access = list();
req_one_access = list(47,55)
@@ -21370,27 +21819,14 @@
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aOL" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv8";
- name = "Divider 8 Blast Doors";
- pixel_x = 30;
- pixel_y = -5;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen10";
- name = "Pen 10 Containment";
- pixel_x = 30;
- pixel_y = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera/network/research{
- dir = 8
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 10
},
/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
+/area/teleporter)
"aOM" = (
/obj/structure/railing{
icon_state = "railing0";
@@ -21399,12 +21835,14 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aON" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 4;
- network = list("Xenobiology")
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/cups,
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 9
},
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aOO" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
@@ -21451,6 +21889,7 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/camera/network/research/xenobio,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aOR" = (
@@ -21502,71 +21941,146 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
"aOW" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/computer/atmos_alert{
+ icon_state = "computer";
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
"aOX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/red,
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
+/obj/structure/catwalk,
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/atmos)
"aOY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/bed/chair/comfy/black{
+/obj/structure/railing{
+ icon_state = "railing0";
dir = 1
},
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
-"aOZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
-"aPa" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/bridge/secondary/meeting_room)
-"aPb" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPe" = (
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPf" = (
-/obj/machinery/camera/network/command{
+/obj/machinery/camera/network/engineering{
dir = 8
},
-/obj/structure/reagent_dispensers/water_cooler/full,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPg" = (
-/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/engineering/atmos)
+"aOZ" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/drone_fabricator{
+ fabricator_tag = "Atmos"
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/drone_fabrication)
+"aPa" = (
+/obj/machinery/camera/network/research/xenobio,
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"aPb" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/machinery/camera/network/research/xenobio{
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"aPc" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/machinery/camera/network/research/xenobio{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"aPd" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "xeno_phoron_pen_scrubbers"
+ },
+/obj/machinery/camera/network/research/xenobio{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"aPe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhallway)
+"aPf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhallway)
+"aPg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"aPh" = (
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/security/lowerhallway)
+"aPi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/cable/green{
@@ -21574,119 +22088,221 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/maintenance/command,
-/turf/simulated/floor/plating,
-/area/bridge/secondary/meeting_room)
-"aPh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"aPj" = (
+/obj/machinery/camera/network/interrogation,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"aPk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28
+ },
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-4"
},
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor,
+/area/maintenance/lower/security)
+"aPl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Warden's Office"
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ icon_state = "secintercom";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aPm" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/steel,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/solitary)
+"aPn" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"aPo" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"aPp" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPk" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/box/cups,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPl" = (
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPm" = (
-/obj/structure/table/woodentable,
-/obj/machinery/newscaster{
- pixel_x = 28
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPn" = (
-/obj/machinery/keycard_auth{
- pixel_x = -24
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPo" = (
-/obj/machinery/keycard_auth{
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
-"aPp" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"aPq" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"aPr" = (
-/obj/structure/stairs/south,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
+/obj/structure/table/bench/standard,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
"aPs" = (
-/obj/structure/table/woodentable,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 8
},
-/obj/item/weapon/folder/blue,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"aPt" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/white/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ dir = 9;
+ icon_state = "bordercolorcorner2"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery)
"aPu" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/wood,
-/area/bridge/secondary/meeting_room)
+/obj/structure/morgue,
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
"aPv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -21925,16 +22541,21 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/storage)
"aPT" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+/obj/structure/table/woodentable,
+/obj/item/weapon/pen/blue{
+ pixel_x = 2;
+ pixel_y = 1
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
},
-/obj/machinery/vending/medical,
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
"aPU" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -22273,12 +22894,11 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/storage)
"aQu" = (
-/obj/machinery/suit_cycler/medical,
-/obj/machinery/camera/network/medbay{
- dir = 4
+/obj/machinery/camera/network/civilian{
+ dir = 1
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
"aQv" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/space/void/medical/emt,
@@ -22687,20 +23307,10 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/surgery)
"aQW" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
+/obj/structure/table/bench/padded,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
"aQX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -22741,22 +23351,12 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/surgery)
"aRa" = (
-/obj/structure/bed/chair{
+/obj/structure/table/bench/padded,
+/obj/machinery/camera/network/civilian{
dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
"aRb" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
@@ -22802,41 +23402,11 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/resleeving)
"aRd" = (
-/obj/structure/closet{
- name = "spare clothes"
- },
-/obj/item/clothing/under/color/black,
-/obj/item/clothing/under/color/black,
-/obj/item/clothing/under/color/black,
-/obj/item/clothing/under/color/grey,
-/obj/item/clothing/under/color/white,
-/obj/item/clothing/under/color/blue,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/under/color/lightpurple,
-/obj/item/clothing/under/color/yellow,
-/obj/item/clothing/under/color/lightred,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/white,
-/obj/item/clothing/shoes/blue,
-/obj/item/clothing/shoes/green,
-/obj/item/clothing/shoes/purple,
-/obj/item/clothing/shoes/yellow,
-/obj/item/clothing/shoes/red,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2,
/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/machinery/vending/loadout/uniform,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/resleeving)
"aRe" = (
@@ -23169,17 +23739,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/north)
"aRE" = (
-/obj/machinery/camera/network/medbay{
+/obj/machinery/camera/network/civilian{
dir = 4
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
"aRF" = (
/obj/structure/cable/green{
d1 = 1;
@@ -23425,21 +23989,15 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"aRR" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
+/obj/machinery/camera/network/tether{
+ dir = 4
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
"aRS" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -23485,20 +24043,14 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/storage)
"aRV" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/structure/bed/chair/wheelchair{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/machinery/camera/network/medbay{
- dir = 8
+/obj/machinery/camera/network/tether{
+ dir = 5
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"aRW" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
@@ -23806,6 +24358,9 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
+"aSx" = (
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aSy" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
@@ -23884,18 +24439,12 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/storage)
"aSF" = (
-/obj/structure/table/bench/standard,
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/effect/floor_decal/techfloor{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
+/obj/machinery/camera/network/tether,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
"aSG" = (
/obj/structure/table/bench/standard,
/obj/machinery/power/apc{
@@ -23983,17 +24532,17 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"aSL" = (
-/obj/machinery/camera/network/medbay{
- dir = 8
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
+/obj/machinery/camera/network/tether{
+ dir = 9
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"aSM" = (
/obj/structure/table/standard,
/obj/machinery/firealarm{
@@ -24123,25 +24672,14 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lowerhall)
"aSU" = (
-/obj/structure/table/bench/standard,
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 5
+/obj/machinery/camera/network/tether{
+ dir = 4
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"aSV" = (
/obj/structure/table/bench/standard,
/obj/effect/landmark/start{
@@ -24207,22 +24745,17 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/breakroom)
"aSZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+/obj/effect/floor_decal/corner/green/border{
dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"aTa" = (
/obj/machinery/light/small,
/obj/effect/floor_decal/borderfloorwhite,
@@ -24374,30 +24907,12 @@
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/warden)
"aTq" = (
-/obj/structure/closet/secure_closet/warden,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat{
- ammo_type = /obj/item/ammo_casing/a12g/beanbag;
- desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
- name = "warden's shotgun"
+/obj/effect/floor_decal/borderfloor,
+/obj/machinery/camera/network/tether{
+ dir = 1
},
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"aTr" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/lowerhallway)
@@ -24653,33 +25168,13 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/solitary)
"aTK" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- icon_state = "borderfloor_shifted";
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/camera/network/medbay{
dir = 1
},
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- icon_state = "bordercolor_shifted";
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightorange{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/steel,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen/blue{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aTL" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -24699,24 +25194,11 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhallway)
"aTM" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Warden's Office"
+/obj/machinery/camera/network/tether{
+ dir = 9
},
-/obj/item/device/radio/intercom/department/security{
- dir = 8;
- icon_state = "secintercom";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
"aTN" = (
/obj/structure/table/reinforced,
/obj/item/device/retail_scanner/security,
@@ -24915,38 +25397,19 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/solitary)
"aUa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior North";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside2)
"aUb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
dir = 9
},
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
"aUc" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/gasstorage)
@@ -25057,20 +25520,12 @@
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
"aUj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
"aUk" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/evidence)
@@ -25359,37 +25814,45 @@
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/evidence)
"aUJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- icon_state = "intact";
- dir = 4
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv5";
+ name = "Divider 5 Blast Doors";
+ pixel_x = -30;
+ pixel_y = 0;
+ req_access = list(55)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen5";
+ name = "Pen 5 Containment";
+ pixel_x = -22;
+ pixel_y = 8;
+ req_access = list(55)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen7";
+ name = "Pen 7 Containment";
+ pixel_x = -22;
+ pixel_y = -8;
+ req_access = list(55)
},
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior North";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aUK" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/structure/closet{
- name = "Evidence Closet"
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"aUK" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
"aUL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/green{
icon_state = "intact";
@@ -25832,23 +26295,44 @@
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
"aVn" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/structure/closet{
- name = "Evidence Closet"
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv7";
+ name = "Divider 7 Blast Doors";
+ pixel_x = -30;
+ pixel_y = -5;
+ req_access = list(55)
},
-/obj/machinery/alarm{
- alarm_id = null;
- breach_detection = 0;
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen9";
+ name = "Pen 9 Containment";
+ pixel_x = -30;
+ pixel_y = 8
},
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior North";
+/obj/machinery/light{
dir = 1
},
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/super{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/machinery/button/remote/airlock{
+ id = "phoroncelldoor9";
+ name = "Phoron Cell 9 Doorlock";
+ pixel_x = -38;
+ pixel_y = 0;
+ specialfunctions = 4
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = 38
+ },
/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
+/area/rnd/outpost/xenobiology/outpost_slimepens)
"aVo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -25946,13 +26430,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/north)
-"aVu" = (
-/obj/structure/bed/chair,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
"aVv" = (
/obj/structure/bed/chair,
/turf/simulated/floor/tiled/dark,
@@ -26142,16 +26619,6 @@
},
/turf/simulated/floor,
/area/tether/surfacebase/security/interrogation)
-"aVI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior North";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
"aVJ" = (
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
@@ -26288,13 +26755,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/brig)
-"aVV" = (
-/obj/machinery/vending/hydronutrients,
-/obj/machinery/camera/network/security{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
"aVW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -26942,63 +27402,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aWM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- icon_state = "intact";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior North";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior West";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
"aWO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/green{
icon_state = "intact";
@@ -27023,13 +27426,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhallway)
-"aWP" = (
-/obj/machinery/camera/network/interrogation{
- icon_state = "camera";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
"aWQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -27080,23 +27476,34 @@
},
/turf/simulated/open,
/area/maintenance/lower/rnd)
-"aXa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"aWV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aWW" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aWX" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aWY" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aWZ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "1-2";
+ dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aXb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -27135,39 +27542,361 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lowerhallway)
+"aXd" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aXe" = (
+/obj/structure/bed/chair/comfy/blue{
+ icon_state = "comfychair_preview";
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Command Secretary"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXf" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXg" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/folder/red,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXh" = (
+/obj/structure/bed/chair/comfy/blue{
+ icon_state = "comfychair_preview";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
"aXi" = (
/obj/effect/floor_decal/chapel{
dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"aXj" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aXk" = (
/obj/effect/floor_decal/chapel{
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"aXl" = (
+/obj/structure/stairs/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aXm" = (
+/obj/structure/bed/chair/comfy/blue{
+ icon_state = "comfychair_preview";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXn" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aXp" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
"aXq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"aXr" = (
+/turf/simulated/wall,
+/area/maintenance/substation/command)
+"aXs" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/smes/buildable{
+ charge = 0;
+ output_attempt = 0;
+ outputting = 0;
+ RCon_tag = "Substation - Command"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aXt" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
"aXu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"aXv" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aXw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aXx" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/folder/blue,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
"aXy" = (
/obj/structure/table/bench/padded,
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"aXz" = (
+/obj/structure/bed/chair/comfy/blue{
+ icon_state = "comfychair_preview";
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Command Secretary"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aXB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aXC" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aXD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aXE" = (
+/obj/structure/cable,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aXF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aXG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aXH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aXJ" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light/small{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
"aXK" = (
/turf/simulated/wall{
can_open = 1
},
/area/maintenance/lower/bar)
+"aXL" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aXM" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aXN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aXO" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXP" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXQ" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aXR" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"aXS" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
"aXT" = (
/obj/structure/railing{
dir = 8
@@ -27178,6 +27907,76 @@
/obj/random/trash_pile,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/bar)
+"aXU" = (
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aXV" = (
+/obj/structure/railing,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"aXW" = (
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aXX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aXY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aXZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aYa" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYb" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aYc" = (
+/obj/structure/table/woodentable,
+/obj/structure/flora/pottedplant/small{
+ pixel_y = 12
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aYd" = (
/turf/simulated/wall,
/area/chapel/main)
@@ -27187,12 +27986,29 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
-"aYi" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
+"aYf" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Command Conf Room"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aYg" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Command Substation"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aYh" = (
+/obj/structure/table/woodentable,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aYj" = (
/obj/machinery/alarm{
pixel_y = 22
@@ -27218,13 +28034,18 @@
},
/turf/simulated/floor/lino,
/area/chapel/office)
-"aYo" = (
-/obj/structure/morgue/crematorium,
-/obj/machinery/camera/network/civilian{
+"aYn" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
+/area/bridge_hallway)
"aYp" = (
/turf/simulated/floor/tiled/dark,
/area/chapel/chapel_morgue)
@@ -27237,6 +28058,42 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/chapel_morgue)
+"aYr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"aYt" = (
/obj/effect/floor_decal/chapel{
dir = 1
@@ -27297,6 +28154,41 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"aYz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aYB" = (
/obj/effect/landmark/start{
name = "Chaplain"
@@ -27309,10 +28201,6 @@
},
/turf/simulated/floor/lino,
/area/chapel/office)
-"aYD" = (
-/obj/structure/morgue,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
"aYE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -27345,19 +28233,16 @@
/obj/effect/floor_decal/chapel,
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
-"aYI" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/pen/blue{
- pixel_x = 2;
- pixel_y = 1
+"aYJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 8
+/obj/machinery/light/small,
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/lino,
-/area/chapel/office)
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"aYK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -27370,6 +28255,20 @@
},
/turf/simulated/floor/lino,
/area/chapel/office)
+"aYL" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ dir = 2;
+ frequency = 1473;
+ name = "Confession Intercom";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"aYM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27384,6 +28283,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/chapel_morgue)
+"aYN" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aYO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -27445,6 +28360,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"aYT" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ dir = 2;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
"aYU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -27477,6 +28405,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/chapel_morgue)
+"aYX" = (
+/obj/machinery/button/windowtint{
+ dir = 1;
+ id = "meetingroom";
+ pixel_x = -25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
"aYY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -27508,6 +28445,22 @@
can_open = 0
},
/area/maintenance/lower/bar)
+"aZb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/command{
+ req_access = list(19)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/bridge_hallway)
"aZc" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -27516,6 +28469,55 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/lino,
/area/chapel/office)
+"aZd" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Command Substation"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aZe" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aZf" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aZg" = (
+/turf/simulated/wall,
+/area/maintenance/commandmaint)
+"aZh" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
"aZi" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -27574,6 +28576,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/office)
+"aZl" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ dir = 2;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
"aZm" = (
/obj/machinery/power/apc{
dir = 4;
@@ -27860,7 +28878,7 @@
pixel_x = 32
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
"aZP" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -27876,7 +28894,27 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_two)
+/area/tether/surfacebase/surface_two_hall)
+"aZQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aZR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"aZS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -27997,28 +29035,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"bab" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/tether{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
"bac" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
@@ -28309,6 +29325,141 @@
},
/turf/simulated/floor/lino,
/area/chapel/office)
+"baH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"baI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"baJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"baK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"baL" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"baM" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 8;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"baN" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "meetingroom"
+ },
+/turf/simulated/floor,
+/area/bridge/meeting_room)
+"baO" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'WATCH YOUR STEP'.";
+ name = "\improper WATCH YOUR STEP"
+ },
+/turf/simulated/wall,
+/area/maintenance/commandmaint)
+"baP" = (
+/obj/structure/lattice,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"baQ" = (
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Surface Civilian Subgrid";
+ name_tag = "Surface Civilian Subgrid"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"baU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"baW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
"baX" = (
/obj/machinery/light/small{
dir = 4
@@ -28336,13 +29487,26 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
-"bbd" = (
-/obj/machinery/camera/network/civilian{
- icon_state = "camera";
- dir = 10
+"bbl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
(1,1,1) = {"
aaa
@@ -32709,7 +33873,6 @@ aab
aab
aab
aab
-aIX
aab
aab
aab
@@ -32721,7 +33884,8 @@ aab
aab
aab
aab
-aIX
+aab
+aUb
aab
aab
aab
@@ -32991,19 +34155,19 @@ aab
aab
aHc
aHs
-aMn
+aIX
aIy
aIY
aHs
-aMn
+aIX
aIy
aLs
aHs
-aMn
+aIX
aIy
aMP
-aNu
-aOk
+aUK
+aIX
aIy
aOJ
aHt
@@ -33132,7 +34296,7 @@ aab
aab
aab
aHc
-aHt
+aPa
aHt
aHt
aIY
@@ -33151,7 +34315,7 @@ aOJ
aHt
aNS
aKX
-aOK
+aPd
aHc
aab
aab
@@ -33204,7 +34368,7 @@ aac
aac
acq
acq
-ako
+ajU
akd
akI
akP
@@ -33290,7 +34454,7 @@ aHt
aKk
aKW
aOJ
-aOw
+aHt
aNV
aKW
aOK
@@ -33420,15 +34584,15 @@ aHv
aHS
aIz
aIY
-aIz
+aPb
aKl
aKX
aLs
-aIz
+aPb
aKl
aKX
aMP
-aIz
+aPb
aKl
aKX
aHc
@@ -33556,7 +34720,7 @@ aab
aab
aab
aab
-aGS
+aab
aHc
aHw
aHx
@@ -33574,7 +34738,7 @@ aNk
aNv
aND
aHc
-aHV
+aVn
aOj
aJa
aWK
@@ -33711,7 +34875,7 @@ aLt
aJB
aMi
aKZ
-aMQ
+aUJ
aNl
aNw
aKZ
@@ -33850,7 +35014,7 @@ aJC
aKo
aPB
aJa
-aJa
+aMQ
aMj
aPB
aJa
@@ -33984,7 +35148,7 @@ aab
aab
aab
aHc
-aHz
+aHO
aHW
aID
aJb
@@ -33992,7 +35156,7 @@ aJD
aKp
aMf
aMk
-aJD
+aMR
aOA
aMf
aNU
@@ -34134,7 +35298,7 @@ aJE
aKq
aPB
aJa
-aJa
+aNu
aMj
aPB
aJa
@@ -34218,7 +35382,7 @@ ahD
als
alz
alR
-amf
+aRE
alz
als
ahD
@@ -34271,7 +35435,7 @@ aHc
aHQ
aHU
aIE
-aJc
+aJe
aJF
aKr
aLa
@@ -34279,7 +35443,7 @@ aLu
aJF
aMl
aLa
-aMR
+aMn
aJF
aNx
aLa
@@ -34408,7 +35572,7 @@ aab
aab
aab
aab
-aGS
+aab
aHc
aHB
aHT
@@ -34426,7 +35590,7 @@ aNm
aNy
aNE
aNW
-aOL
+aOk
aMj
aJa
aWL
@@ -34556,15 +35720,15 @@ aHv
aHY
aIG
aJd
-aIG
+aPc
aKt
aKX
aLv
-aIG
+aPc
aKt
aKX
aMS
-aIG
+aPc
aKt
aKX
aHc
@@ -34710,7 +35874,7 @@ aHt
aKu
aKW
aNX
-aON
+aHt
aKt
aKX
aOK
@@ -34783,12 +35947,12 @@ ahs
ahs
aho
alm
-alt
+ano
alB
alS
alS
amq
-amA
+ano
alm
aho
aho
@@ -34836,7 +36000,7 @@ aab
aab
aab
aHc
-aHt
+aPa
aHt
aHt
aJd
@@ -34855,7 +36019,7 @@ aNX
aHt
aKu
aKW
-aOK
+aPd
aHc
aab
aab
@@ -34979,19 +36143,19 @@ aab
aab
aHc
aHC
-aOo
+aJc
aIH
aJd
aHC
-aOo
+aJc
aIH
aLv
aHC
-aOo
+aJc
aIH
aMS
aHC
-aOo
+aJc
aIH
aNX
aHt
@@ -35048,7 +36212,7 @@ aac
aac
abn
aal
-aaJ
+aak
aaR
abo
abA
@@ -35079,11 +36243,11 @@ aho
ajy
abz
aii
-ano
+asZ
anD
anN
aok
-aoJ
+atK
apu
aqe
aqO
@@ -35190,7 +36354,7 @@ aae
aae
aae
aae
-aPg
+aat
aae
aae
aae
@@ -35265,7 +36429,6 @@ aab
aab
aab
aab
-aJe
aab
aab
aab
@@ -35277,7 +36440,8 @@ aab
aab
aab
aab
-aJe
+aab
+aUj
aab
aab
aab
@@ -35327,16 +36491,16 @@ aac
aac
aac
aae
-aak
-aat
-akg
-aak
-aPb
-aPh
-aPl
-aPn
-aPe
-aPr
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+aam
aae
acW
acW
@@ -35469,16 +36633,16 @@ aac
aac
aac
aae
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
aam
-aau
-aOW
-aOY
-aPc
-aPi
-aPe
-aPe
-aPe
-aPr
aae
acW
acW
@@ -35506,7 +36670,7 @@ ajy
amH
amV
acF
-acN
+atC
anQ
aol
aoL
@@ -35611,16 +36775,16 @@ aac
aac
aac
aae
-aam
-aav
-aOX
-aOZ
-aPd
-aPj
-aPe
-aPe
-aPp
-aPs
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
aae
acW
acW
@@ -35753,16 +36917,16 @@ aac
aac
aac
aae
-aak
-aaI
-aaI
-aPa
-aPe
-aPe
-aPe
-aPe
-aPe
-aPt
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
+akn
aae
acW
acW
@@ -35899,12 +37063,12 @@ aae
aae
aae
aae
-aPf
-aPk
-aPm
-aPo
-aPq
-aPu
+akn
+akn
+akn
+akn
+akn
+akn
aae
acW
acW
@@ -36080,7 +37244,7 @@ aop
aoP
apz
aqj
-aqT
+avL
ary
asp
asX
@@ -36225,7 +37389,7 @@ acF
acF
acF
asq
-asZ
+axO
atA
atz
atz
@@ -36469,7 +37633,7 @@ aUz
aUN
aVg
aVx
-aVV
+akg
aVQ
aWe
aWo
@@ -36504,18 +37668,18 @@ ail
anU
aor
aoR
-apB
+auK
aqk
aqU
arA
ass
aqk
-atC
+aya
auo
auW
avu
awj
-awV
+aAi
atB
ayC
azg
@@ -36887,7 +38051,7 @@ aab
abE
acd
aTu
-aTM
+aPl
abE
abE
aUC
@@ -37074,7 +38238,7 @@ aov
anX
apF
aqm
-aqY
+aqU
arE
asw
aqk
@@ -37197,7 +38361,7 @@ ale
alh
all
alq
-alv
+aoJ
ahD
alW
amh
@@ -37319,13 +38483,13 @@ aTz
aUF
aUN
aUW
-aVI
+ahy
aUN
aUW
-aWM
+aPi
aUN
aUW
-aVI
+ahy
aUN
acW
acW
@@ -37453,12 +38617,12 @@ aab
aab
aab
abE
-aTq
+aas
aTy
aUe
aWF
aTz
-aUJ
+afd
aUN
aUd
aVo
@@ -37510,7 +38674,7 @@ aut
aut
aut
atJ
-axO
+aBF
auv
azl
aAe
@@ -37519,7 +38683,7 @@ aAT
aBW
aCx
aCZ
-aDs
+aOZ
aDJ
aAT
aAT
@@ -37624,7 +38788,7 @@ agZ
aha
adY
ahG
-alG
+aqq
alZ
amk
adY
@@ -37646,7 +38810,7 @@ anZ
arF
asx
atb
-atK
+awV
auu
auZ
auu
@@ -37890,9 +39054,9 @@ aVZ
aWw
aWC
aWD
-aWN
+ako
aWT
-aXa
+aPf
aXb
aTr
acW
@@ -38023,10 +39187,10 @@ aab
aab
aTs
aTE
-aUa
+aaX
aTr
aUs
-aUs
+aPh
aUQ
aVb
aUQ
@@ -38081,7 +39245,7 @@ axd
axR
ayG
azp
-aAi
+aDs
aAU
aBC
aCa
@@ -38171,9 +39335,9 @@ aUt
aUt
aUQ
aVc
-aVu
+ajK
aVF
-aWP
+aVP
aWa
aWl
aUQ
@@ -38315,7 +39479,7 @@ aUQ
aVd
aVv
aVG
-aVP
+aPj
aWb
aWm
aUQ
@@ -38366,7 +39530,7 @@ avA
ayH
azr
aAk
-aAW
+aHz
aAX
aAX
aAX
@@ -38378,7 +39542,7 @@ aAX
aAX
aER
aFb
-aFb
+aOX
azl
aEp
aEQ
@@ -38449,7 +39613,7 @@ aab
aab
aTs
aTH
-aUj
+aPe
aUk
aUu
aUH
@@ -38474,7 +39638,7 @@ age
agt
agt
agt
-ahd
+agt
aiC
alM
age
@@ -38493,10 +39657,10 @@ adY
ahY
aoX
afG
-aqq
+aqE
arb
arc
-asB
+axv
atg
atO
aux
@@ -38736,7 +39900,7 @@ aTQ
aUp
aUk
aUw
-aVn
+afq
aUR
aVE
aUS
@@ -39020,7 +40184,7 @@ aTI
aTZ
aUk
aUy
-aUK
+aPg
aUR
aVO
aUS
@@ -39042,7 +40206,7 @@ age
agu
age
agQ
-ahf
+aTM
aiA
aly
amd
@@ -39164,7 +40328,7 @@ aUk
aUk
aUk
aUR
-aVE
+aPk
aUS
abD
aca
@@ -39219,7 +40383,7 @@ ayI
azv
aAp
aBb
-aBF
+aGS
aCd
aCB
aDd
@@ -39300,8 +40464,8 @@ aab
aab
aab
aTt
-aTK
-aUb
+aPm
+acN
aaS
aWG
aUq
@@ -39323,26 +40487,26 @@ afa
afB
afV
agf
-afV
+aRV
agG
afV
-ahh
+amf
ahu
ahK
ahZ
afV
-afV
+aSU
afV
ajm
afV
agG
afB
ajQ
-anc
+afV
ans
agG
afV
-afV
+aRV
apd
apJ
afG
@@ -39372,7 +40536,7 @@ aAX
aAX
aAX
aES
-aFw
+aFb
azl
aFK
aGa
@@ -39507,7 +40671,7 @@ aBH
aCf
aCD
aDf
-aDx
+aOW
aBc
aAX
aAX
@@ -39640,7 +40804,7 @@ ave
avJ
awz
axo
-aya
+aCI
ayL
azy
aAs
@@ -39745,12 +40909,13 @@ aap
aap
aap
adY
-afd
+alv
afE
afY
agi
agv
agv
+aXR
agv
agv
agv
@@ -39764,8 +40929,7 @@ agv
agv
agv
agv
-agv
-agv
+aXR
agv
agv
aoB
@@ -39893,6 +41057,7 @@ afY
agj
agw
agw
+aXS
agw
agw
agw
@@ -39906,14 +41071,13 @@ agw
agw
agw
agw
-agw
-agw
+aXS
agw
agw
aoC
apf
apN
-aqy
+aqs
arg
arh
arh
@@ -39921,7 +41085,7 @@ atm
arh
arh
avf
-avL
+avN
awB
axq
ayb
@@ -40012,9 +41176,9 @@ aab
aac
aNz
aPW
-aQu
+ahh
aan
-aay
+ahd
aaN
aaU
aan
@@ -40035,21 +41199,21 @@ afY
agj
agw
agw
+aXS
agw
agw
agw
agw
agw
agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+asc
+asc
+baN
+asc
+asc
+baN
+asc
+asc
agw
agw
aoC
@@ -40177,24 +41341,24 @@ afY
agj
agw
agw
+aXS
agw
agw
agw
agw
agw
agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-aoC
+asc
+asO
+aSx
+aXd
+aYX
+aSx
+aXW
+asc
+asc
+aXS
+aXV
apf
apN
aqs
@@ -40315,27 +41479,27 @@ aen
aeK
afh
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+agl
+agl
+agl
+agl
+aob
+aob
+aob
+aob
+aob
+aob
+asc
+asP
+aWV
+aXe
+aXm
+aXO
+aSx
+aYc
+baN
+aXS
aoC
apf
apN
@@ -40457,27 +41621,27 @@ adY
adY
afi
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+agl
+anz
+apV
+aXJ
+aob
+apT
+aXU
+atu
+aOw
+aXU
+asd
+asQ
+aWW
+aXf
+aXn
+aXP
+aSx
+aYf
+baN
+aXS
aoC
apf
apN
@@ -40599,27 +41763,27 @@ aac
adY
afj
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+agl
+apg
+apW
+aXL
+aob
+aXl
+aXU
+aYz
+apS
+avq
+asf
+aYA
+aWX
+aXg
+aXx
+aXQ
+aXX
+aYh
+baN
+aXS
aoC
apf
apN
@@ -40629,7 +41793,7 @@ arS
asK
atp
atZ
-auK
+arS
avf
avK
avK
@@ -40638,7 +41802,7 @@ avK
avK
azD
aAy
-aAW
+aOY
aAX
aAX
aAX
@@ -40719,7 +41883,7 @@ aab
aab
aac
aaf
-aao
+acT
aao
aao
aQz
@@ -40728,9 +41892,9 @@ aRp
aap
aap
aSr
-aSF
+aPr
aSM
-aSU
+alt
aSr
acQ
add
@@ -40741,28 +41905,28 @@ aac
adY
afk
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-aoC
+agk
+agl
+apl
+aXw
+aob
+aob
+aXo
+aXY
+aqy
+aob
+aZb
+asc
+avj
+aWY
+aXh
+aXz
+aWY
+aXZ
+aON
+baN
+aXS
+aXV
apf
apN
aqA
@@ -40775,7 +41939,7 @@ arS
avf
avP
awF
-axv
+aDx
avP
ayM
azE
@@ -40883,27 +42047,27 @@ aac
adY
aff
afH
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+aiW
+anx
+apU
+arp
+apQ
+apS
+aXG
+aYa
+aYs
+aob
+aXN
+asc
+aYN
+aWZ
+aXj
+aXM
+aSx
+aYb
+asc
+asc
+aXS
aoC
apf
apN
@@ -40921,7 +42085,7 @@ axw
ayg
ayN
azF
-aAA
+aFw
azl
aBM
aCi
@@ -41025,28 +42189,28 @@ aac
adY
afl
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-aoC
+apB
+anK
+anK
+anK
+anK
+anK
+anK
+aYn
+aYL
+aob
+aXN
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+aXS
+aXS
+aXV
apf
apN
aqB
@@ -41151,7 +42315,7 @@ aQc
aQB
aQS
aRr
-aRE
+aPp
aSa
aSs
aSI
@@ -41167,26 +42331,26 @@ aad
adY
afm
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+anK
+aoa
+apm
+aqH
+aqH
+anK
+aOo
+aYJ
+aob
+aZe
+aZh
+baH
+aZg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
agw
aoC
apf
@@ -41309,31 +42473,31 @@ aeo
adY
afn
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+anK
+aoc
+apn
+aqI
+aXH
+asb
+aYr
+aYT
+aob
+aXv
+aXw
+baI
+aZg
+aXS
agw
agw
agw
+aXS
+aXS
agw
aoC
apf
apN
-aqD
+aTq
adY
adY
adY
@@ -41451,26 +42615,26 @@ aaG
adY
afo
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+anK
+aoe
+apo
+aqK
+amA
+anK
+aob
+aob
+aob
+aZg
+aZf
+baI
+aZg
+baP
agw
agw
agw
+adY
+aXS
agw
aoC
apf
@@ -41491,9 +42655,9 @@ arl
azI
azI
azI
-aBP
+aRR
aCm
-aCI
+aCK
aDi
arl
aDN
@@ -41582,7 +42746,7 @@ aSc
aSt
aSK
aTl
-aSZ
+aPs
aTc
aTd
aTf
@@ -41593,31 +42757,31 @@ aaG
adY
acU
afG
-afY
-agj
+agk
+anK
+aof
+apR
+arm
+arr
+anK
+anv
+aXs
+baQ
+aYg
+aXt
+baI
+baO
+aXS
agw
agw
agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-aoC
+adY
+aXS
+aXS
+aXV
apf
apN
-aqq
+aqD
adY
arW
arl
@@ -41652,7 +42816,7 @@ arZ
aGK
avp
aHr
-aHO
+aHV
aIp
aIO
aJq
@@ -41713,7 +42877,7 @@ aab
aab
aab
aag
-aas
+aav
aPD
aQe
aQE
@@ -41735,25 +42899,25 @@ aep
adY
afp
afG
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+anK
+aph
+apY
+apY
+aOL
+anK
+apX
+aXE
+aZl
+aXr
+apW
+baI
+baL
+aXS
+aXS
+aXS
+aXS
+adY
agw
agw
aoC
@@ -41859,12 +43023,12 @@ aaA
aPE
aQf
aQF
-aQW
+aPt
aRu
aRJ
aao
aSu
-aSL
+ahO
aST
aTn
aaf
@@ -41875,27 +43039,27 @@ acy
adf
aeq
adY
-afq
+alG
afI
-afY
-agj
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
+agk
+anK
+apk
+apZ
+arn
+asa
+anK
+aXp
+baU
+aXF
+aZd
+aZQ
+baJ
+baO
agw
agw
agw
agw
+adY
agw
agw
aoC
@@ -41908,7 +43072,7 @@ arY
arY
arY
auN
-avi
+aAA
avU
awK
axA
@@ -42019,25 +43183,25 @@ aer
aeL
afr
afJ
-afY
agk
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
-agx
+anK
+anK
+anK
+anK
+anK
+anK
+aXr
+aXr
+aXr
+aXr
+aZg
+baK
+aZg
+adY
+adY
+adY
+adY
+adY
agx
agx
aoD
@@ -42147,7 +43311,7 @@ aQY
aRu
aRL
aSd
-aSb
+aPq
aad
aaY
abs
@@ -42162,29 +43326,29 @@ aeM
afs
afK
afZ
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-agl
-apg
-anv
+aqJ
+aqJ
+aqJ
+aqJ
+aqJ
+aqJ
+aqJ
+aqJ
+aqJ
+aqJ
+aSZ
+bbl
+baM
+aXA
+aXA
+aXA
+aXA
+aXA
+aXB
+aXB
+aXB
+aXC
+aXD
aqE
adY
aac
@@ -42281,7 +43445,7 @@ aab
aab
aab
aag
-aaE
+aay
aPH
aQi
aQI
@@ -42314,8 +43478,8 @@ agm
agm
agm
agm
-aiW
-ajo
+aZR
+baW
ajo
ajo
ajR
@@ -42446,11 +43610,11 @@ adY
afu
afM
afM
-afM
+aqG
agz
agH
agR
-ahi
+anc
afM
ahN
aib
@@ -42462,14 +43626,14 @@ aZN
aZP
ajC
ajI
-ajK
+asB
afG
anu
afM
afM
aiE
apP
-aqG
+aSL
adY
aZx
aZz
@@ -42569,7 +43733,7 @@ aaF
aPI
aQj
aQJ
-aRa
+aPn
aah
aRN
aao
@@ -42736,8 +43900,8 @@ adu
agT
adu
ahv
-ahO
-ahO
+aau
+aau
ahR
adu
ajp
@@ -42884,7 +44048,7 @@ ain
adu
ajp
aYd
-aYi
+aqT
aYu
aYH
aYS
@@ -43036,7 +44200,7 @@ aro
aXq
aZX
aYd
-bab
+avi
arZ
aFR
avp
@@ -43133,7 +44297,7 @@ aab
aab
aab
aah
-aaX
+aaE
aPM
aQn
aQN
@@ -43161,14 +44325,14 @@ adu
adu
agV
adu
-ahy
+aSF
aju
aju
ais
adu
ajb
aYd
-aXy
+aQW
aYv
aXy
aro
@@ -43176,7 +44340,7 @@ anh
aro
aXy
aZK
-aXy
+aRa
aYd
bac
arZ
@@ -43417,7 +44581,7 @@ aab
aab
aab
aah
-acT
+aaI
aPN
aQp
aQO
@@ -43565,7 +44729,7 @@ aQq
aQP
aRg
aah
-aRR
+aPo
aSi
aSy
aad
@@ -43744,7 +44908,7 @@ aZi
aZr
aZG
aro
-bbd
+aro
aYd
avp
avp
@@ -44164,7 +45328,7 @@ ait
aiG
aih
aYB
-aYI
+aPT
aZW
aZp
api
@@ -44412,14 +45576,14 @@ aab
aab
aac
aKv
-aPT
+aaJ
aQs
aQs
aRk
aRB
aRU
aSo
-aSB
+aTK
aad
aad
aad
@@ -44446,7 +45610,7 @@ aiL
aiL
aiL
aoE
-ajU
+aqY
anf
aYK
amL
@@ -44701,7 +45865,7 @@ aQt
aQR
aRl
aRC
-aRV
+ahi
aSp
aSE
aKv
@@ -44730,8 +45894,8 @@ ahP
ahP
ahP
ajT
-aYo
-aYD
+arq
+aPu
aYY
aYZ
baZ
@@ -45022,7 +46186,7 @@ aZn
aZv
ajT
aiN
-aro
+aQu
aYd
apq
apq
@@ -45443,7 +46607,7 @@ aab
aab
ajM
ajM
-ajM
+aUa
ajM
ajM
ajM
diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm
index 4a462c9118..719b2f75fa 100644
--- a/maps/tether/tether-03-surface3.dmm
+++ b/maps/tether/tether-03-surface3.dmm
@@ -1,20 +1,23 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
+"aaa" = (
/turf/unsimulated/wall/planetary/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"ab" = (
+"aab" = (
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"ac" = (
+"aac" = (
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"ad" = (
-/obj/machinery/camera/network/outside{
+"aad" = (
+/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"ae" = (
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"aae" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/machinery/light{
dir = 8;
@@ -23,13 +26,13 @@
},
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"af" = (
+"aaf" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/upperhall)
-"ag" = (
+"aag" = (
/turf/simulated/wall,
/area/tether/surfacebase/medical/triage)
-"ah" = (
+"aah" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -38,7 +41,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/triage)
-"ai" = (
+"aai" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -47,7 +50,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/breakroom)
-"aj" = (
+"aaj" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -67,21 +70,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"ak" = (
+"aak" = (
/obj/structure/bed/chair,
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"al" = (
+"aal" = (
/obj/structure/bed/chair,
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"am" = (
+"aam" = (
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"an" = (
+"aan" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -98,7 +101,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/upperhall)
-"ao" = (
+"aao" = (
/obj/structure/closet/secure_closet/paramedic,
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
@@ -108,26 +111,38 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"ap" = (
+"aap" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+ dir = 4
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
},
-/obj/machinery/camera/network/medbay,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aq" = (
+"aaq" = (
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"ar" = (
+"aar" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/open,
/area/tether/surfacebase/medical/triage)
-"as" = (
+"aas" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
@@ -145,10 +160,10 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"at" = (
+"aat" = (
/turf/simulated/open,
/area/tether/surfacebase/medical/triage)
-"au" = (
+"aau" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -158,7 +173,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/breakroom)
-"av" = (
+"aav" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -167,44 +182,44 @@
},
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"aw" = (
+"aaw" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"ax" = (
+"aax" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"ay" = (
+"aay" = (
/obj/structure/bed/chair{
dir = 8
},
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"az" = (
+"aaz" = (
/turf/simulated/wall,
/area/tether/surfacebase/medical/patient_a)
-"aA" = (
+"aaA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aB" = (
+"aaB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aC" = (
+"aaC" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aD" = (
+"aaD" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -213,10 +228,10 @@
},
/turf/simulated/open,
/area/tether/surfacebase/medical/triage)
-"aE" = (
+"aaE" = (
/turf/simulated/wall,
/area/vacant/vacant_site2)
-"aF" = (
+"aaF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -225,7 +240,7 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"aG" = (
+"aaG" = (
/obj/item/device/radio/intercom/department/security{
dir = 4;
icon_state = "secintercom";
@@ -240,7 +255,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"aH" = (
+"aaH" = (
/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -251,12 +266,12 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aI" = (
+"aaI" = (
/obj/effect/floor_decal/steeldecal/steel_decals10,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aJ" = (
+"aaJ" = (
/obj/machinery/sleeper{
dir = 8
},
@@ -265,14 +280,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aK" = (
+"aaK" = (
/obj/machinery/sleep_console,
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aL" = (
+"aaL" = (
/obj/machinery/light{
dir = 1
},
@@ -284,7 +299,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aM" = (
+"aaM" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -294,18 +309,18 @@
},
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"aN" = (
+"aaN" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"aO" = (
+"aaO" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/donut,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"aP" = (
+"aaP" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -314,7 +329,7 @@
},
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"aQ" = (
+"aaQ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -327,7 +342,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aR" = (
+"aaR" = (
/obj/effect/floor_decal/borderfloorwhite/corner{
dir = 1
},
@@ -337,20 +352,20 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aS" = (
+"aaS" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aT" = (
+"aaT" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 5
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aU" = (
+"aaU" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -368,7 +383,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"aV" = (
+"aaV" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -384,7 +399,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"aW" = (
+"aaW" = (
/obj/structure/railing{
icon_state = "railing0";
dir = 4
@@ -400,10 +415,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"aX" = (
+"aaX" = (
/turf/simulated/open,
/area/tether/surfacebase/security/upperhall)
-"aY" = (
+"aaY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -412,14 +427,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"aZ" = (
+"aaZ" = (
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"ba" = (
+"aba" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"bb" = (
+"abb" = (
/obj/machinery/bodyscanner{
dir = 8
},
@@ -428,14 +443,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"bc" = (
+"abc" = (
/obj/machinery/body_scanconsole,
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"bd" = (
+"abd" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized/full{
@@ -443,10 +458,10 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/patient_a)
-"be" = (
+"abe" = (
/turf/simulated/wall,
/area/tether/surfacebase/reading_room)
-"bf" = (
+"abf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -455,7 +470,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/reading_room)
-"bg" = (
+"abg" = (
/obj/machinery/door/blast/shutters{
id = "hangarsurface";
name = "Engine Repair Bay"
@@ -463,10 +478,20 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"bh" = (
-/turf/simulated/wall/r_wall,
-/area/bridge/secondary)
-"bi" = (
+"abh" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"abi" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -484,7 +509,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"bj" = (
+"abj" = (
/obj/item/device/radio/intercom{
dir = 4;
pixel_x = 24
@@ -497,7 +522,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"bk" = (
+"abk" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -509,7 +534,7 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_site2)
-"bl" = (
+"abl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -518,7 +543,7 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_site2)
-"bm" = (
+"abm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -535,14 +560,14 @@
/obj/random/cigarettes,
/turf/simulated/floor/wood,
/area/vacant/vacant_site2)
-"bn" = (
+"abn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"bo" = (
+"abo" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -552,7 +577,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"bp" = (
+"abp" = (
/obj/structure/bed/chair,
/obj/machinery/alarm{
pixel_y = 22
@@ -572,12 +597,12 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
-"bq" = (
+"abq" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"br" = (
+"abr" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
@@ -606,7 +631,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
-"bs" = (
+"abs" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -630,26 +655,52 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
-"bt" = (
+"abt" = (
/obj/structure/table/glass,
/obj/item/device/flashlight/lamp/green,
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"bu" = (
+"abu" = (
/obj/structure/table/glass,
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"bv" = (
-/turf/simulated/open,
-/area/bridge/secondary)
-"bw" = (
-/obj/structure/flora/pottedplant,
-/obj/effect/floor_decal/corner/blue/full{
- dir = 8
+"abv" = (
+/obj/structure/table/glass,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"bx" = (
+/obj/item/roller{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "surfmed";
+ name = "Medical Shutters";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"abw" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"abx" = (
/obj/structure/table,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -661,14 +712,26 @@
/obj/random/cigarettes,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"by" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
+"aby" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/machinery/computer/security,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"bz" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"abz" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/zpipe/down/supply,
@@ -679,17 +742,24 @@
icon_state = "32-2"
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"bA" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
+/area/tether/surfacebase/surface_three_hall)
+"abA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/machinery/computer/communications,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"bB" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"abB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/railing,
@@ -700,29 +770,32 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"bC" = (
-/obj/machinery/status_display{
- pixel_y = 32
+/area/tether/surfacebase/surface_three_hall)
+"abC" = (
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
},
-/obj/machinery/computer/supplycomp,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"bD" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"abD" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"bE" = (
+"abE" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet/blue,
/area/tether/surfacebase/security/breakroom)
-"bF" = (
+"abF" = (
/obj/machinery/status_display{
pixel_x = 32;
pixel_y = 0
@@ -735,7 +808,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"bG" = (
+"abG" = (
/obj/effect/floor_decal/borderfloor{
dir = 8;
icon_state = "borderfloor";
@@ -746,7 +819,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"bH" = (
+"abH" = (
/obj/structure/railing{
icon_state = "railing0";
dir = 4
@@ -760,11 +833,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"bI" = (
+"abI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"bJ" = (
+"abJ" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -778,7 +851,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"bK" = (
+"abK" = (
/obj/machinery/light{
dir = 1
},
@@ -786,14 +859,14 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"bL" = (
+"abL" = (
/obj/structure/table/rack,
/obj/item/weapon/gun/energy/taser,
/obj/item/weapon/gun/energy/taser,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"bM" = (
+"abM" = (
/obj/structure/table/rack,
/obj/item/weapon/gun/energy/stunrevolver,
/obj/machinery/firealarm{
@@ -806,7 +879,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"bN" = (
+"abN" = (
/obj/structure/closet/bombclosetsecurity,
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light{
@@ -814,12 +887,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"bO" = (
+"abO" = (
/obj/effect/decal/cleanable/dirt,
/obj/random/trash,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"bP" = (
+"abP" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -829,19 +902,19 @@
/obj/random/junk,
/turf/simulated/floor/wood,
/area/vacant/vacant_site2)
-"bQ" = (
+"abQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/vacant/vacant_site2)
-"bR" = (
+"abR" = (
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"bS" = (
+"abS" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"bT" = (
+"abT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table/rack,
/obj/random/maintenance/medical,
@@ -851,7 +924,7 @@
/obj/random/toy,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"bU" = (
+"abU" = (
/obj/effect/floor_decal/borderfloor{
dir = 8;
icon_state = "borderfloor";
@@ -878,7 +951,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"bV" = (
+"abV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 2;
@@ -887,11 +960,11 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"bW" = (
+"abW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"bX" = (
+"abX" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -910,7 +983,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"bY" = (
+"abY" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
@@ -920,7 +993,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"bZ" = (
+"abZ" = (
/obj/structure/railing{
icon_state = "railing0";
dir = 1
@@ -938,7 +1011,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"ca" = (
+"aca" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized/full{
@@ -949,7 +1022,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/patient_a)
-"cb" = (
+"acb" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -964,7 +1037,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"cc" = (
+"acc" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -976,7 +1049,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"cd" = (
+"acd" = (
/obj/effect/floor_decal/borderfloorwhite/corner{
dir = 4
},
@@ -988,7 +1061,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"ce" = (
+"ace" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -1006,7 +1079,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"cf" = (
+"acf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -1028,10 +1101,10 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
-"cg" = (
+"acg" = (
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"ch" = (
+"ach" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -1042,46 +1115,88 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"ci" = (
+"aci" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"cj" = (
+"acj" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"ck" = (
-/obj/structure/flora/pottedplant,
-/obj/effect/floor_decal/corner/blue/full{
+"ack" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"cl" = (
-/obj/machinery/computer/station_alert/all{
- icon_state = "computer";
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"cm" = (
-/obj/machinery/camera/network/research,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 4;
- pixel_y = 26
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_hallway)
-"cn" = (
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"co" = (
+/area/tether/surfacebase/surface_three_hall)
+"acl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"acm" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_three)
+"acn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aco" = (
/obj/structure/railing{
icon_state = "railing0";
dir = 1
@@ -1102,7 +1217,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cp" = (
+"acp" = (
/obj/effect/floor_decal/borderfloor{
dir = 8;
icon_state = "borderfloor";
@@ -1124,10 +1239,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cq" = (
+"acq" = (
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"cr" = (
+"acr" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -1147,7 +1262,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cs" = (
+"acs" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -1156,21 +1271,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"ct" = (
+"act" = (
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"cu" = (
+"acu" = (
/obj/structure/table/rack,
/obj/random/tetheraid,
/obj/random/maintenance/medical,
/turf/simulated/floor/wood,
/area/vacant/vacant_site2)
-"cv" = (
+"acv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"cw" = (
+"acw" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -1180,19 +1295,19 @@
},
/turf/simulated/open,
/area/vacant/vacant_site2)
-"cx" = (
+"acx" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 30;
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"cy" = (
+"acy" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_mob/vore/aggressive/mimic,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"cz" = (
+"acz" = (
/obj/effect/floor_decal/borderfloor{
dir = 8;
icon_state = "borderfloor";
@@ -1203,7 +1318,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"cA" = (
+"acA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -1214,7 +1329,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"cB" = (
+"acB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -1228,7 +1343,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"cC" = (
+"acC" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -1246,7 +1361,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"cD" = (
+"acD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -1267,7 +1382,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"cE" = (
+"acE" = (
/obj/machinery/door/airlock/glass_security{
name = "Break Room";
req_access = list(1)
@@ -1289,7 +1404,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"cF" = (
+"acF" = (
/obj/structure/table/rack,
/obj/item/weapon/gun/energy/taser,
/obj/item/weapon/gun/energy/taser,
@@ -1306,7 +1421,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"cG" = (
+"acG" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -1314,7 +1429,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"cH" = (
+"acH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -1337,7 +1452,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cI" = (
+"acI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -1352,7 +1467,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cJ" = (
+"acJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -1369,7 +1484,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cK" = (
+"acK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -1386,7 +1501,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cL" = (
+"acL" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -1407,7 +1522,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"cM" = (
+"acM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -1418,20 +1533,20 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"cN" = (
+"acN" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"cO" = (
+"acO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"cP" = (
+"acP" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -1444,14 +1559,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"cQ" = (
+"acQ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"cR" = (
+"acR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -1470,60 +1585,86 @@
/obj/machinery/light_switch{
dir = 1;
on = 0;
- pixel_x = -14;
+ pixel_x = -10;
pixel_y = -24
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
-"cS" = (
+"acS" = (
/obj/machinery/door/airlock{
name = "Room 1"
},
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/reading_room)
-"cT" = (
+"acT" = (
/obj/machinery/door/airlock{
name = "Room 2"
},
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/reading_room)
-"cU" = (
+"acU" = (
/obj/machinery/door/airlock{
name = "Room 3"
},
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/reading_room)
-"cV" = (
-/obj/structure/bed/chair/office/dark{
+"acV" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"cW" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"cX" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/computer/power_monitor{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"cY" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"cZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/atm{
+ pixel_y = 31
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"acW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"acX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"acY" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/pool)
+"acZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -1534,8 +1675,8 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"da" = (
+/area/tether/surfacebase/surface_three_hall)
+"ada" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -1543,7 +1684,7 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"db" = (
+"adb" = (
/obj/machinery/light_switch{
pixel_x = 25
},
@@ -1554,7 +1695,7 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"dc" = (
+"adc" = (
/obj/machinery/vending/medical,
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
@@ -1564,7 +1705,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"dd" = (
+"add" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -1582,7 +1723,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"de" = (
+"ade" = (
/obj/machinery/door/airlock/security{
name = "Equipment Storage"
},
@@ -1600,7 +1741,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/armory)
-"df" = (
+"adf" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -1608,29 +1749,43 @@
/obj/item/device/retail_scanner/security,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"dg" = (
+"adg" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/camera/network/security,
-/turf/simulated/open,
-/area/tether/surfacebase/security/upperhall)
-"dh" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"adh" = (
/obj/machinery/vending/cola,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"di" = (
+"adi" = (
/obj/machinery/vending/coffee,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"dj" = (
+"adj" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"dk" = (
+"adk" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/obj/effect/floor_decal/borderfloor/corner2{
@@ -1641,12 +1796,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"dl" = (
+"adl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"dm" = (
+"adm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -1666,7 +1821,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"dn" = (
+"adn" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -1691,7 +1846,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"do" = (
+"ado" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -1706,7 +1861,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"dp" = (
+"adp" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -1715,7 +1870,7 @@
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"dq" = (
+"adq" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -1731,7 +1886,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
-"dr" = (
+"adr" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/wardrobe/red,
/obj/item/device/radio/intercom{
@@ -1740,13 +1895,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"ds" = (
+"ads" = (
/obj/structure/closet,
/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"dt" = (
+"adt" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -1757,7 +1912,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"du" = (
+"adu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -1776,7 +1931,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
-"dv" = (
+"adv" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -1797,7 +1952,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
-"dw" = (
+"adw" = (
/obj/effect/floor_decal/borderfloorwhite/corner{
dir = 1
},
@@ -1806,32 +1961,20 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"dx" = (
-/obj/machinery/camera/network/medbay{
+"adx" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/evidence,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8;
+ icon_state = "borderfloor";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"dy" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"ady" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -1844,24 +1987,19 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"dz" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "surfmed";
- name = "Medical Shutters";
- pixel_x = -24;
- pixel_y = 0;
- req_access = list(5)
+"adz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "SurfMedbayFoyer";
+ name = "Medbay Doors Control";
+ pixel_x = 20;
+ pixel_y = -26
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"dA" = (
+"adA" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/regular,
/obj/effect/floor_decal/borderfloorwhite{
@@ -1879,7 +2017,7 @@
/obj/random/tetheraid,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"dB" = (
+"adB" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -1888,7 +2026,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"dC" = (
+"adC" = (
/obj/structure/table/glass,
/obj/item/weapon/book/codex,
/obj/machinery/recharger,
@@ -1897,13 +2035,13 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"dD" = (
+"adD" = (
/obj/machinery/light_switch{
pixel_y = 25
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"dE" = (
+"adE" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -1916,7 +2054,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"dF" = (
+"adF" = (
/obj/structure/table/glass,
/obj/machinery/photocopier/faxmachine{
department = "Reading Room"
@@ -1925,53 +2063,59 @@
/obj/machinery/status_display{
pixel_y = 30
},
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"dG" = (
+"adG" = (
/obj/structure/catwalk,
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"dH" = (
+"adH" = (
/obj/effect/floor_decal/corner_oldtile/green/full{
dir = 8
},
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"dI" = (
+"adI" = (
/obj/effect/floor_decal/corner_oldtile/green{
dir = 5
},
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"dJ" = (
+"adJ" = (
/obj/effect/floor_decal/corner_oldtile/green/full{
dir = 1
},
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"dK" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+"adK" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"dL" = (
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/pool)
+"adL" = (
/obj/structure/ladder,
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"dM" = (
+"adM" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/spray/cleaner{
pixel_x = -1;
@@ -1990,23 +2134,23 @@
/obj/item/device/defib_kit/loaded,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"dN" = (
+"adN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"dO" = (
+"adO" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/armory)
-"dP" = (
+"adP" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/common)
-"dQ" = (
+"adQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/upperhall)
-"dR" = (
+"adR" = (
/obj/machinery/door/airlock/glass_security{
id_tag = "SurfaceBrigAccess";
layer = 2.8;
@@ -2018,7 +2162,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"dS" = (
+"adS" = (
/obj/machinery/door/airlock/glass_security{
id_tag = "SurfaceBrigAccess";
layer = 2.8;
@@ -2034,38 +2178,38 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"dT" = (
+"adT" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/breakroom)
-"dU" = (
+"adU" = (
/obj/structure/table/reinforced,
/obj/effect/landmark{
name = "lightsout"
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"dV" = (
+"adV" = (
/obj/item/weapon/tool/screwdriver,
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"dW" = (
+"adW" = (
/turf/simulated/wall,
/area/tether/surfacebase/security/processing)
-"dX" = (
+"adX" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/security,
/obj/item/device/holowarrant,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"dY" = (
+"adY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"dZ" = (
+"adZ" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -2077,7 +2221,7 @@
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"ea" = (
+"aea" = (
/obj/structure/table/glass,
/obj/item/bodybag/cryobag,
/obj/item/bodybag/cryobag,
@@ -2100,7 +2244,7 @@
/obj/item/weapon/tool/screwdriver,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"eb" = (
+"aeb" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -2108,15 +2252,33 @@
/obj/item/device/retail_scanner/security,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"ec" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals6,
+"aec" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/syringes,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Medical Department";
+ departmentType = 3;
+ name = "Medical RC";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"ed" = (
+"aed" = (
/turf/simulated/wall,
/area/tether/surfacebase/medical/patient_b)
-"ee" = (
+"aee" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -2143,13 +2305,19 @@
dir = 8
},
/area/tether/surfacebase/medical/triage)
-"ef" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
+"aef" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"eg" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/frontdesk)
+"aeg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -2163,7 +2331,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eh" = (
+"aeh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -2177,7 +2345,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"ei" = (
+"aei" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -2191,7 +2359,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"ej" = (
+"aej" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
@@ -2203,7 +2371,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"ek" = (
+"aek" = (
/obj/structure/table/glass,
/obj/item/weapon/pen,
/obj/machinery/alarm{
@@ -2219,34 +2387,37 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"el" = (
+"ael" = (
/obj/effect/floor_decal/corner_oldtile/green{
dir = 9
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"em" = (
+"aem" = (
/obj/structure/railing,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"en" = (
+"aen" = (
/obj/effect/floor_decal/corner_oldtile/green{
dir = 6
},
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"eo" = (
-/obj/structure/bed/chair/office/dark{
+"aeo" = (
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"ep" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/pool)
+"aep" = (
/turf/simulated/wall/r_wall,
/area/vacant/vacant_site2)
-"eq" = (
+"aeq" = (
/obj/structure/table/steel,
/obj/item/weapon/folder/red{
pixel_x = 2;
@@ -2266,7 +2437,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"er" = (
+"aer" = (
/obj/machinery/computer/secure_data,
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -2282,7 +2453,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"es" = (
+"aes" = (
/obj/structure/table/steel,
/obj/item/device/flashlight/lamp,
/obj/effect/floor_decal/borderfloor{
@@ -2298,7 +2469,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"et" = (
+"aet" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
icon_state = "borderfloor";
@@ -2315,7 +2486,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"eu" = (
+"aeu" = (
/obj/structure/cable/green{
icon_state = "0-2"
},
@@ -2335,7 +2506,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"ev" = (
+"aev" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -2357,7 +2528,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"ew" = (
+"aew" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
},
@@ -2369,7 +2540,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"ex" = (
+"aex" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -2384,12 +2555,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"ey" = (
+"aey" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"ez" = (
+"aez" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -2398,40 +2569,41 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"eA" = (
-/obj/machinery/vending/snack,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/machinery/camera/network/security{
+"aeA" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"eB" = (
-/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/reagentgrinder,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"aeB" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 4
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"eC" = (
+/area/tether/surfacebase/security/common)
+"aeC" = (
/obj/machinery/light_switch{
dir = 8;
pixel_x = 28
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"eD" = (
+"aeD" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
@@ -2440,7 +2612,7 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"eE" = (
+"aeE" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -2455,7 +2627,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"eF" = (
+"aeF" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -2467,10 +2639,10 @@
/obj/random/junk,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"eG" = (
+"aeG" = (
/turf/simulated/wall,
/area/tether/surfacebase/medical/lobby)
-"eH" = (
+"aeH" = (
/obj/structure/closet/secure_closet/medical3,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -2486,14 +2658,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"eI" = (
+"aeI" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/security,
/obj/item/device/holowarrant,
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"eJ" = (
+"aeJ" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -2513,7 +2685,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"eK" = (
+"aeK" = (
/obj/structure/table/reinforced,
/obj/machinery/button/remote/airlock{
id = "SurfaceFoyer";
@@ -2536,7 +2708,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"eL" = (
+"aeL" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -2552,7 +2724,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"eM" = (
+"aeM" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -2564,7 +2736,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"eN" = (
+"aeN" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
@@ -2591,14 +2763,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"eO" = (
+"aeO" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eP" = (
+"aeP" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -2612,20 +2784,20 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eQ" = (
+"aeQ" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eR" = (
+"aeR" = (
/obj/structure/bookcase,
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eS" = (
+"aeS" = (
/obj/structure/bookcase,
/obj/machinery/light/small,
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eT" = (
+"aeT" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
/obj/item/device/radio/intercom{
@@ -2634,7 +2806,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eU" = (
+"aeU" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -2655,8 +2827,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"eV" = (
+/area/tether/surfacebase/surface_three_hall)
+"aeV" = (
/obj/structure/table/glass,
/obj/item/device/flashlight/lamp/green,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -2664,7 +2836,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/reading_room)
-"eW" = (
+"aeW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -2673,7 +2845,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/reading_room)
-"eX" = (
+"aeX" = (
/obj/structure/railing{
dir = 4
},
@@ -2682,7 +2854,7 @@
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"eY" = (
+"aeY" = (
/obj/structure/railing{
dir = 8
},
@@ -2691,7 +2863,7 @@
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"eZ" = (
+"aeZ" = (
/obj/effect/floor_decal/techfloor/corner,
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -2712,7 +2884,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"fa" = (
+"afa" = (
/obj/machinery/door/airlock/maintenance/medical{
name = "Medical Maintenance Access";
req_access = list(5)
@@ -2731,7 +2903,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/medical/triage)
-"fb" = (
+"afb" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -2756,10 +2928,10 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"fc" = (
+"afc" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/processing)
-"fd" = (
+"afd" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -2781,8 +2953,8 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"fe" = (
+/area/tether/surfacebase/surface_three_hall)
+"afe" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -2790,8 +2962,8 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ff" = (
+/area/tether/surfacebase/surface_three_hall)
+"aff" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -2807,7 +2979,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"fg" = (
+"afg" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -2817,21 +2989,21 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"fh" = (
+/area/tether/surfacebase/surface_three_hall)
+"afh" = (
/turf/simulated/wall/r_wall,
/area/rnd/research_storage)
-"fi" = (
+"afi" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"fj" = (
+"afj" = (
/turf/simulated/wall,
/area/crew_quarters/recreation_area_restroom)
-"fk" = (
+"afk" = (
/obj/structure/cable{
icon_state = "32-4"
},
@@ -2845,22 +3017,22 @@
dir = 4
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"fl" = (
+/area/tether/surfacebase/surface_three_hall)
+"afl" = (
/obj/machinery/recharger/wallcharger{
pixel_x = 30;
pixel_y = -4
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"fm" = (
+"afm" = (
/obj/random/maintenance/security,
/obj/random/maintenance/security,
/obj/random/maintenance/security,
/mob/living/simple_mob/vore/aggressive/mimic,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"fn" = (
+"afn" = (
/obj/structure/table/steel,
/obj/item/device/camera,
/obj/effect/floor_decal/borderfloor{
@@ -2880,7 +3052,7 @@
/obj/item/device/retail_scanner/security,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"fo" = (
+"afo" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -2889,14 +3061,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"fp" = (
+"afp" = (
/obj/structure/table/steel,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"fq" = (
+"afq" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -2905,7 +3077,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"fr" = (
+"afr" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -2916,7 +3088,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"fs" = (
+"afs" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -2936,7 +3108,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"ft" = (
+"aft" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -2955,7 +3127,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"fu" = (
+"afu" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -2969,7 +3141,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"fv" = (
+"afv" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -2983,7 +3155,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"fw" = (
+"afw" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
icon_state = "2-8"
@@ -2995,7 +3167,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"fx" = (
+"afx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -3017,7 +3189,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"fy" = (
+"afy" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized/full{
@@ -3025,7 +3197,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/patient_b)
-"fz" = (
+"afz" = (
/obj/structure/bed/chair/office/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/landmark/start{
@@ -3033,7 +3205,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"fA" = (
+"afA" = (
/obj/structure/bed/chair,
/obj/machinery/alarm{
pixel_y = 22
@@ -3053,16 +3225,16 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_b)
-"fB" = (
+"afB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"fC" = (
+"afC" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"fD" = (
+"afD" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
@@ -3091,7 +3263,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_b)
-"fE" = (
+"afE" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -3115,19 +3287,28 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_b)
-"fF" = (
-/obj/machinery/camera/network/outside{
- dir = 8
+"afF" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"fG" = (
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"afG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/tether/surfacebase/reading_room)
-"fH" = (
+"afH" = (
/obj/machinery/door/airlock{
name = "Reading Room"
},
@@ -3142,14 +3323,14 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/steel_grid,
/area/tether/surfacebase/reading_room)
-"fI" = (
+"afI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/surfacebase/reading_room)
-"fJ" = (
+"afJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -3159,10 +3340,10 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/surfacebase/reading_room)
-"fK" = (
+"afK" = (
/turf/simulated/wall,
/area/rnd/staircase/thirdfloor)
-"fL" = (
+"afL" = (
/obj/machinery/atmospherics/pipe/zpipe/up,
/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
/obj/machinery/atmospherics/pipe/zpipe/up/supply,
@@ -3182,10 +3363,10 @@
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"fM" = (
+"afM" = (
/turf/simulated/wall,
/area/rnd/research_storage)
-"fN" = (
+"afN" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -3193,35 +3374,40 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"fO" = (
+/area/tether/surfacebase/surface_three_hall)
+"afO" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"fP" = (
+"afP" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"fQ" = (
+"afQ" = (
/obj/machinery/door/airlock{
name = "Unit 3"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"fR" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/machinery/camera/network/security{
+"afR" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/flasher{
+ id = "Drunk Tank";
+ pixel_x = -28;
+ pixel_y = 0
+ },
/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"fS" = (
+/area/tether/surfacebase/security/common)
+"afS" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -3233,7 +3419,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"fT" = (
+"afT" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -3254,7 +3440,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"fU" = (
+"afU" = (
/obj/machinery/door/airlock/security{
name = "Security Processing";
req_access = list(1)
@@ -3273,13 +3459,13 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/steel_grid,
/area/tether/surfacebase/security/processing)
-"fV" = (
+"afV" = (
/obj/structure/table/reinforced,
/obj/item/device/radio/headset/headset_sec,
/obj/item/device/radio/headset/headset_sec,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"fW" = (
+"afW" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
@@ -3290,7 +3476,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"fX" = (
+"afX" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3304,7 +3490,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"fY" = (
+"afY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -3313,7 +3499,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"fZ" = (
+"afZ" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -3325,7 +3511,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"ga" = (
+"aga" = (
/obj/structure/table/glass,
/obj/item/weapon/backup_implanter{
pixel_y = 8
@@ -3349,7 +3535,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"gb" = (
+"agb" = (
/obj/structure/table/reinforced,
/obj/item/weapon/cell/device/weapon,
/obj/item/weapon/cell/device/weapon,
@@ -3361,13 +3547,13 @@
/obj/item/clothing/accessory/badge/holo/cord,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"gc" = (
+"agc" = (
/obj/structure/table/reinforced,
/obj/item/device/radio/headset/headset_sec/alt,
/obj/item/device/radio/headset/headset_sec/alt,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"gd" = (
+"agd" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -3388,10 +3574,10 @@
/obj/structure/flora/pottedplant/stoutbush,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"ge" = (
+"age" = (
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"gf" = (
+"agf" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -3404,9 +3590,13 @@
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 8
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gg" = (
+"agg" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3414,13 +3604,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gh" = (
+"agh" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gi" = (
+"agi" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized/full{
@@ -3431,7 +3621,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/patient_b)
-"gj" = (
+"agj" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -3441,7 +3631,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"gk" = (
+"agk" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -3455,7 +3645,7 @@
/obj/item/weapon/backup_implanter,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"gl" = (
+"agl" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -3469,7 +3659,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"gm" = (
+"agm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -3478,7 +3668,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"gn" = (
+"agn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -3490,7 +3680,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/triage)
-"go" = (
+"ago" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -3499,7 +3689,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"gp" = (
+"agp" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -3516,8 +3706,8 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"gq" = (
+/area/tether/surfacebase/surface_three_hall)
+"agq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3533,8 +3723,8 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"gr" = (
+/area/tether/surfacebase/surface_three_hall)
+"agr" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -3551,8 +3741,8 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"gs" = (
+/area/tether/surfacebase/surface_three_hall)
+"ags" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -3560,15 +3750,15 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"gt" = (
+/area/tether/surfacebase/surface_three_hall)
+"agt" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 4
},
/obj/effect/floor_decal/corner_oldtile/green/full,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"gu" = (
+"agu" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
},
@@ -3577,7 +3767,7 @@
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"gv" = (
+"agv" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 1
},
@@ -3586,10 +3776,10 @@
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"gw" = (
+"agw" = (
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_three)
-"gx" = (
+/area/tether/surfacebase/surface_three_hall)
+"agx" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable{
icon_state = "4-8"
@@ -3599,8 +3789,8 @@
},
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"gy" = (
+/area/tether/surfacebase/surface_three_hall)
+"agy" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible,
@@ -3611,7 +3801,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"gz" = (
+"agz" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -3632,8 +3822,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"gA" = (
+/area/tether/surfacebase/surface_three_hall)
+"agA" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
icon_state = "extinguisher_closed";
@@ -3653,27 +3843,26 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"gB" = (
-/obj/machinery/camera/network/tether{
+/area/tether/surfacebase/surface_three_hall)
+"agB" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"gC" = (
+/area/tether/surfacebase/security/lobby)
+"agC" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/zpipe/down{
dir = 1
@@ -3691,7 +3880,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/open,
/area/rnd/research_storage)
-"gD" = (
+"agD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/steel,
/obj/item/weapon/storage/bag/circuits/basic,
@@ -3705,7 +3894,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"gE" = (
+"agE" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -3724,18 +3913,18 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"gF" = (
+/area/tether/surfacebase/surface_three_hall)
+"agF" = (
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"gG" = (
+"agG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gH" = (
+"agH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3744,20 +3933,23 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gI" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior West";
- dir = 8
- },
+"agI" = (
/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"gJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"agJ" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
@@ -3774,7 +3966,7 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"gK" = (
+"agK" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3789,7 +3981,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"gL" = (
+"agL" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -3804,7 +3996,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"gM" = (
+"agM" = (
/obj/effect/floor_decal/techfloor{
dir = 6
},
@@ -3813,29 +4005,20 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"gN" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/syringes,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
+"agN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 6
},
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Medical Department";
- departmentType = 3;
- name = "Medical RC";
- pixel_x = -30;
- pixel_y = 0
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
},
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"gO" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"agO" = (
/obj/structure/table/steel,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -3844,7 +4027,7 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"gP" = (
+"agP" = (
/obj/machinery/computer/secure_data,
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -3859,7 +4042,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"gQ" = (
+"agQ" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -3869,12 +4052,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"gR" = (
+"agR" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"gS" = (
+"agS" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -3884,7 +4067,7 @@
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"gT" = (
+"agT" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -3900,21 +4083,21 @@
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gU" = (
+"agU" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gV" = (
+"agV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gW" = (
+"agW" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3928,17 +4111,17 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"gX" = (
+"agX" = (
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"gY" = (
+"agY" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"gZ" = (
+"agZ" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -3957,7 +4140,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"ha" = (
+"aha" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -3971,8 +4154,8 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hb" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahb" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -3982,8 +4165,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hc" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahc" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -3997,14 +4180,14 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hd" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahd" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
scrub_id = "atrium"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_three)
-"he" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahe" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -4019,21 +4202,21 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hf" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahf" = (
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"hg" = (
+"ahg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/obj/structure/railing,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"hh" = (
+"ahh" = (
/turf/simulated/wall,
/area/rnd/workshop)
-"hi" = (
+"ahi" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 4;
@@ -4054,7 +4237,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"hj" = (
+"ahj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -4063,7 +4246,7 @@
},
/turf/simulated/floor/plating,
/area/rnd/workshop)
-"hk" = (
+"ahk" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/steel,
/obj/random/tech_supply,
@@ -4078,7 +4261,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"hl" = (
+"ahl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -4090,8 +4273,8 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hm" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -4100,7 +4283,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"hn" = (
+"ahn" = (
/obj/machinery/door/airlock/maintenance/rnd{
name = "Elavator Maintenance Access"
},
@@ -4111,7 +4294,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"ho" = (
+"aho" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -4119,7 +4302,7 @@
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"hp" = (
+"ahp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -4128,23 +4311,22 @@
},
/turf/simulated/floor/plating,
/area/rnd/workshop)
-"hq" = (
-/obj/machinery/light{
- dir = 4
+"ahq" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
},
-/obj/machinery/computer/crew{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"hr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/pool)
+"ahr" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/techfloor{
dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"hs" = (
+"ahs" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -4162,21 +4344,13 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ht" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Secondary Bridge";
- departmentType = 5;
- name = "Secondary Bridge RC";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/book/codex,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"hu" = (
+/area/tether/surfacebase/surface_three_hall)
+"aht" = (
+/obj/machinery/space_heater,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/panic_shelter)
+"ahu" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -4186,7 +4360,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"hv" = (
+"ahv" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -4199,7 +4373,7 @@
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"hw" = (
+"ahw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -4218,10 +4392,10 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/processing)
-"hx" = (
+"ahx" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/frontdesk)
-"hy" = (
+"ahy" = (
/obj/machinery/door/airlock/glass_security{
name = "Front Desk";
req_access = list(1)
@@ -4232,7 +4406,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"hz" = (
+"ahz" = (
/obj/structure/table/steel,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -4252,7 +4426,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"hA" = (
+"ahA" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -4280,23 +4454,28 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"hB" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/evidence,
+"ahB" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/machinery/camera/network/security{
- dir = 4
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"hC" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahC" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -4308,7 +4487,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"hD" = (
+"ahD" = (
/obj/structure/closet/crate,
/obj/random/maintenance/medical,
/obj/random/maintenance/medical,
@@ -4325,7 +4504,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"hE" = (
+"ahE" = (
/obj/machinery/light/small{
dir = 4;
pixel_y = 0
@@ -4339,7 +4518,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"hF" = (
+"ahF" = (
/obj/machinery/photocopier,
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -4351,7 +4530,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"hG" = (
+"ahG" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -4370,7 +4549,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"hH" = (
+"ahH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -4386,7 +4565,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"hI" = (
+"ahI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
@@ -4396,7 +4575,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"hJ" = (
+"ahJ" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -4417,7 +4596,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"hK" = (
+"ahK" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -4425,7 +4604,7 @@
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"hL" = (
+"ahL" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -4439,18 +4618,18 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"hM" = (
+"ahM" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"hN" = (
+"ahN" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"hO" = (
+"ahO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -4469,7 +4648,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_b)
-"hP" = (
+"ahP" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -4488,8 +4667,8 @@
pixel_y = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hQ" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahQ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -4500,8 +4679,8 @@
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hR" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahR" = (
/obj/structure/extinguisher_cabinet{
dir = 8;
icon_state = "extinguisher_closed";
@@ -4520,19 +4699,19 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"hS" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahS" = (
/obj/structure/grille,
/obj/structure/railing,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_three)
-"hT" = (
+/area/tether/surfacebase/surface_three_hall)
+"ahT" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"hU" = (
+"ahU" = (
/obj/machinery/media/jukebox,
/obj/machinery/firealarm{
dir = 2;
@@ -4545,7 +4724,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"hV" = (
+"ahV" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -4565,7 +4744,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"hW" = (
+"ahW" = (
/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
@@ -4579,9 +4758,13 @@
/obj/machinery/status_display{
pixel_y = 30
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"hX" = (
+"ahX" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -4596,7 +4779,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"hY" = (
+"ahY" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -4613,7 +4796,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"hZ" = (
+"ahZ" = (
/obj/structure/cable/green{
icon_state = "1-4"
},
@@ -4622,7 +4805,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"ia" = (
+"aia" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -4638,30 +4821,18 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"ib" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/obj/machinery/camera/network/medbay,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"ic" = (
+"aib" = (
+/obj/structure/closet/crate/freezer,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/freezer)
+"aic" = (
/obj/random/trash_pile,
/obj/effect/floor_decal/techfloor{
dir = 10
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"id" = (
+"aid" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/techfloor/corner{
@@ -4672,7 +4843,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"ie" = (
+"aie" = (
/obj/structure/closet,
/obj/random/maintenance/medical,
/obj/random/maintenance/clean,
@@ -4680,7 +4851,7 @@
/obj/random/maintenance/medical,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"if" = (
+"aif" = (
/obj/effect/floor_decal/techfloor{
dir = 5
},
@@ -4690,7 +4861,7 @@
/obj/random/maintenance/medical,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"ig" = (
+"aig" = (
/obj/structure/bed/chair/office/light,
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/landmark/start{
@@ -4706,7 +4877,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"ih" = (
+"aih" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -4725,12 +4896,12 @@
/obj/machinery/light_switch{
dir = 1;
on = 0;
- pixel_x = -14;
+ pixel_x = -10;
pixel_y = -24
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_b)
-"ii" = (
+"aii" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
@@ -4740,11 +4911,11 @@
dir = 4
},
/area/tether/surfacebase/medical/lobby)
-"ij" = (
+"aij" = (
/obj/structure/sign/greencross,
/turf/simulated/wall,
/area/tether/surfacebase/medical/lobby)
-"ik" = (
+"aik" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -4752,8 +4923,8 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"il" = (
+/area/tether/surfacebase/surface_three_hall)
+"ail" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -4775,8 +4946,8 @@
pixel_y = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"im" = (
+/area/tether/surfacebase/surface_three_hall)
+"aim" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -4790,8 +4961,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"in" = (
+/area/tether/surfacebase/surface_three_hall)
+"ain" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -4811,11 +4982,11 @@
pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"io" = (
+/area/tether/surfacebase/surface_three_hall)
+"aio" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/panic_shelter)
-"ip" = (
+"aip" = (
/obj/machinery/vending/snack,
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -4834,8 +5005,8 @@
dir = 8
},
/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/atrium_three)
-"iq" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiq" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -4844,8 +5015,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ir" = (
+/area/tether/surfacebase/surface_three_hall)
+"air" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -4857,8 +5028,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"is" = (
+/area/tether/surfacebase/surface_three_hall)
+"ais" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -4876,8 +5047,8 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"it" = (
+/area/tether/surfacebase/surface_three_hall)
+"ait" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -4892,8 +5063,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"iu" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiu" = (
/obj/structure/table/steel,
/obj/item/device/integrated_electronics/debugger{
pixel_x = -5;
@@ -4909,14 +5080,14 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"iv" = (
+"aiv" = (
/obj/random/junk,
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"iw" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiw" = (
/obj/structure/table/steel,
/obj/item/device/integrated_circuit_printer,
/obj/effect/floor_decal/techfloor{
@@ -4924,7 +5095,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"ix" = (
+"aix" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -4936,8 +5107,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"iy" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiy" = (
/obj/structure/table/steel,
/obj/item/device/electronic_assembly/large/default,
/obj/machinery/light{
@@ -4949,7 +5120,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"iz" = (
+"aiz" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 8;
@@ -4960,7 +5131,7 @@
/obj/machinery/vending/assist,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"iA" = (
+"aiA" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -4971,7 +5142,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"iB" = (
+"aiB" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -4992,7 +5163,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"iC" = (
+"aiC" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 4
@@ -5010,8 +5181,8 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"iD" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiD" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -5026,12 +5197,15 @@
/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 9
},
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"iE" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiE" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"iF" = (
+"aiF" = (
/obj/machinery/portable_atmospherics/hydroponics/soil,
/obj/item/device/radio/intercom{
dir = 8;
@@ -5039,7 +5213,7 @@
},
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
-"iG" = (
+"aiG" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -5052,8 +5226,8 @@
/obj/effect/floor_decal/borderfloor/corner2,
/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"iH" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiH" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms"
},
@@ -5067,7 +5241,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/recreation_area_restroom)
-"iI" = (
+"aiI" = (
/obj/structure/sink{
dir = 8;
icon_state = "sink";
@@ -5080,37 +5254,23 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"iJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Secondary Command Office"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"iK" = (
-/obj/machinery/camera/network/tether,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+"aiJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aiK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"iL" = (
+/area/crew_quarters/pool)
+"aiL" = (
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/atrium_three)
-"iM" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiM" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -5119,13 +5279,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"iN" = (
+"aiN" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"iO" = (
+"aiO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -5146,7 +5306,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"iP" = (
+"aiP" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -5160,7 +5320,7 @@
/obj/item/weapon/storage/firstaid/regular,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"iQ" = (
+"aiQ" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -5169,7 +5329,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"iR" = (
+"aiR" = (
/obj/structure/cable/green{
icon_state = "1-8"
},
@@ -5180,7 +5340,7 @@
/obj/effect/floor_decal/corner/red/bordercorner,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"iS" = (
+"aiS" = (
/obj/structure/table/reinforced,
/obj/item/device/radio{
pixel_x = 4;
@@ -5209,7 +5369,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"iT" = (
+"aiT" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -5235,7 +5395,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"iU" = (
+"aiU" = (
/obj/machinery/computer/security{
dir = 4
},
@@ -5243,14 +5403,14 @@
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"iV" = (
+"aiV" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"iW" = (
+/area/tether/surfacebase/surface_three_hall)
+"aiW" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -5262,7 +5422,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"iX" = (
+"aiX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -5277,7 +5437,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"iY" = (
+"aiY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -5286,7 +5446,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"iZ" = (
+"aiZ" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -5295,7 +5455,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"ja" = (
+"aja" = (
/obj/machinery/computer/crew{
dir = 4
},
@@ -5315,27 +5475,23 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"jb" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/photocopier,
+"ajb" = (
/obj/effect/floor_decal/borderfloor{
- dir = 4
+ dir = 8
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
+ dir = 6
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
+ dir = 5
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"jc" = (
-/obj/machinery/camera/network/tether,
+/area/tether/surfacebase/surface_three_hall)
+"ajc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -5350,8 +5506,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jd" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajd" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -5366,8 +5522,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"je" = (
+/area/tether/surfacebase/surface_three_hall)
+"aje" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -5385,14 +5541,14 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jf" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajf" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jg" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajg" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -5410,8 +5566,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jh" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajh" = (
/obj/machinery/light{
dir = 1
},
@@ -5426,8 +5582,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ji" = (
+/area/tether/surfacebase/surface_three_hall)
+"aji" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -5442,8 +5598,8 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jj" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajj" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -5457,8 +5613,8 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jk" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajk" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -5472,8 +5628,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jl" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajl" = (
/obj/structure/bed/padded,
/obj/effect/floor_decal/techfloor{
dir = 9
@@ -5487,7 +5643,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jm" = (
+"ajm" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -5496,7 +5652,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jn" = (
+"ajn" = (
/obj/machinery/light/small{
dir = 1
},
@@ -5510,7 +5666,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jo" = (
+"ajo" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 29
},
@@ -5519,14 +5675,14 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jp" = (
+"ajp" = (
/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/effect/floor_decal/techfloor{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jq" = (
+"ajq" = (
/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -5537,7 +5693,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jr" = (
+"ajr" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 4
@@ -5558,14 +5714,14 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"js" = (
+"ajs" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,
/obj/effect/floor_decal/techfloor{
dir = 5
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jt" = (
+"ajt" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -5580,8 +5736,8 @@
},
/obj/structure/flora/pottedplant/stoutbush,
/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/atrium_three)
-"ju" = (
+/area/tether/surfacebase/surface_three_hall)
+"aju" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -5589,27 +5745,27 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jv" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajv" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jw" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jx" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajx" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jy" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajy" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -5621,11 +5777,11 @@
/obj/item/device/gps/science,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"jz" = (
+"ajz" = (
/obj/structure/flora/tree/sif,
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/atrium_three)
-"jA" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -5639,60 +5795,50 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jB" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"ajC" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/floor_decal/corner/lightgrey/border{
dir = 1
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
+/area/tether/surfacebase/surface_three_hall)
+"ajD" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/device/radio/intercom{
dir = 4;
- icon_state = "pipe-c"
+ pixel_x = 24
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jE" = (
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"ajE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5709,7 +5855,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"jF" = (
+"ajF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -5718,31 +5864,18 @@
pixel_y = 0
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jG" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajG" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/camera/network/security{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/flasher{
- id = "Drunk Tank";
- pixel_x = -28;
- pixel_y = 0
- },
+/area/tether/surfacebase/surface_three_hall)
+"ajH" = (
+/obj/machinery/computer/secure_data,
/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"jI" = (
+/area/bridge)
+"ajI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/up{
dir = 8
@@ -5753,13 +5886,13 @@
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"jJ" = (
+"ajJ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"jK" = (
+"ajK" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -5768,7 +5901,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"jL" = (
+"ajL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -5788,7 +5921,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"jM" = (
+"ajM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5796,8 +5929,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jN" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -5809,7 +5942,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"jO" = (
+"ajO" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -5828,7 +5961,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"jP" = (
+"ajP" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -5849,7 +5982,7 @@
/obj/machinery/vending/security,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"jQ" = (
+"ajQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5872,7 +6005,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"jR" = (
+"ajR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -5883,8 +6016,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jS" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajS" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -5893,10 +6026,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"jT" = (
+"ajT" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/lobby)
-"jU" = (
+"ajU" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -5904,8 +6037,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jV" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5913,8 +6046,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jW" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5922,20 +6055,20 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jX" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jY" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajY" = (
/obj/structure/disposalpipe/junction{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"jZ" = (
+/area/tether/surfacebase/surface_three_hall)
+"ajZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -5948,8 +6081,8 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ka" = (
+/area/tether/surfacebase/surface_three_hall)
+"aka" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5960,8 +6093,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kb" = (
+/area/tether/surfacebase/surface_three_hall)
+"akb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5974,8 +6107,8 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kc" = (
+/area/tether/surfacebase/surface_three_hall)
+"akc" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -5992,8 +6125,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kd" = (
+/area/tether/surfacebase/surface_three_hall)
+"akd" = (
/obj/machinery/status_display{
pixel_x = 32;
pixel_y = 0
@@ -6011,26 +6144,26 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ke" = (
+/area/tether/surfacebase/surface_three_hall)
+"ake" = (
/obj/structure/bed/padded,
/obj/effect/floor_decal/techfloor{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kf" = (
+"akf" = (
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kg" = (
+"akg" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kh" = (
+"akh" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"ki" = (
+"aki" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
@@ -6041,7 +6174,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kj" = (
+"akj" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
@@ -6053,13 +6186,21 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kk" = (
-/obj/machinery/camera/network/outside{
+"akk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"kl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/camera/network/tether,
+/turf/simulated/floor/tiled,
+/area/hallway/lower/third_south)
+"akl" = (
/obj/machinery/vending/cola,
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -6078,8 +6219,8 @@
dir = 8
},
/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/atrium_three)
-"km" = (
+/area/tether/surfacebase/surface_three_hall)
+"akm" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -6091,8 +6232,8 @@
},
/obj/machinery/light,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kn" = (
+/area/tether/surfacebase/surface_three_hall)
+"akn" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6102,22 +6243,19 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ko" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
+/area/tether/surfacebase/surface_three_hall)
+"ako" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 0
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
},
-/obj/machinery/camera/network/tether{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kp" = (
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"akp" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/borderfloor/corner2{
@@ -6133,14 +6271,14 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kq" = (
+/area/tether/surfacebase/surface_three_hall)
+"akq" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kr" = (
+/area/tether/surfacebase/surface_three_hall)
+"akr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/steeldecal/steel_decals6,
@@ -6150,8 +6288,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ks" = (
+/area/tether/surfacebase/surface_three_hall)
+"aks" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -6166,20 +6304,21 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kt" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
+/area/tether/surfacebase/surface_three_hall)
+"akt" = (
+/obj/structure/table/steel,
+/obj/item/device/integrated_electronics/debugger{
+ pixel_x = -5;
+ pixel_y = 0
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
+/obj/item/device/integrated_electronics/wirer{
+ pixel_x = 5;
+ pixel_y = 0
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ku" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"aku" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6193,8 +6332,8 @@
pixel_y = -25
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kv" = (
+/area/tether/surfacebase/surface_three_hall)
+"akv" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -6205,8 +6344,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kw" = (
+/area/tether/surfacebase/surface_three_hall)
+"akw" = (
/obj/machinery/computer/security{
dir = 8
},
@@ -6216,9 +6355,13 @@
/obj/effect/floor_decal/corner/red/border{
dir = 6
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"kx" = (
+"akx" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6228,8 +6371,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ky" = (
+/area/tether/surfacebase/surface_three_hall)
+"aky" = (
/obj/machinery/light{
dir = 1
},
@@ -6238,7 +6381,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"kz" = (
+"akz" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -6256,7 +6399,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"kA" = (
+"akA" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -6271,7 +6414,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/frontdesk)
-"kB" = (
+"akB" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/eastleft{
dir = 1
@@ -6294,7 +6437,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"kC" = (
+"akC" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6306,8 +6449,8 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kD" = (
+/area/tether/surfacebase/surface_three_hall)
+"akD" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
@@ -6321,14 +6464,14 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kE" = (
+/area/tether/surfacebase/surface_three_hall)
+"akE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kF" = (
+/area/tether/surfacebase/surface_three_hall)
+"akF" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced{
@@ -6350,25 +6493,25 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"kG" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+"akG" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner{
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/structure/window/basic,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kH" = (
+/area/tether/surfacebase/surface_three_hall)
+"akH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kI" = (
+/area/tether/surfacebase/surface_three_hall)
+"akI" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lightgrey/bordercorner,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6383,8 +6526,8 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"akJ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6401,8 +6544,8 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kK" = (
+/area/tether/surfacebase/surface_three_hall)
+"akK" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -6417,8 +6560,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kL" = (
+/area/tether/surfacebase/surface_three_hall)
+"akL" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -6433,20 +6576,15 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kM" = (
-/obj/machinery/camera/network/tether{
- dir = 9
+/area/tether/surfacebase/surface_three_hall)
+"akM" = (
+/obj/machinery/door/window/southleft{
+ name = "Library Desk Door";
+ req_access = list(37)
},
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"kN" = (
+/turf/simulated/floor/carpet,
+/area/library)
+"akN" = (
/obj/structure/closet,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
@@ -6457,19 +6595,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kO" = (
+"akO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kP" = (
+"akP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kQ" = (
+"akQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -6480,7 +6618,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kR" = (
+"akR" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -6499,16 +6637,16 @@
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"kS" = (
+"akS" = (
/turf/simulated/wall,
/area/crew_quarters/pool)
-"kT" = (
+"akT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/crew_quarters/pool)
-"kU" = (
+"akU" = (
/obj/machinery/door/airlock/multi_tile/glass{
name = "Pool"
},
@@ -6520,7 +6658,7 @@
dir = 8
},
/area/crew_quarters/pool)
-"kV" = (
+"akV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
@@ -6536,7 +6674,7 @@
dir = 4
},
/area/crew_quarters/pool)
-"kW" = (
+"akW" = (
/obj/structure/sign/biohazard{
pixel_y = 32
},
@@ -6547,23 +6685,30 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"kX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/crew_quarters/pool)
-"kY" = (
+"akX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"akY" = (
/turf/simulated/wall,
/area/crew_quarters/recreation_area)
-"kZ" = (
+"akZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/crew_quarters/recreation_area)
-"la" = (
+"ala" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -6574,8 +6719,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"lb" = (
+/area/tether/surfacebase/surface_three_hall)
+"alb" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -6589,16 +6734,16 @@
pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"lc" = (
+/area/tether/surfacebase/surface_three_hall)
+"alc" = (
/turf/simulated/wall,
/area/tether/surfacebase/north_stairs_three)
-"ld" = (
+"ald" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"le" = (
+"ale" = (
/obj/structure/sign/directions/engineering{
dir = 10;
icon_state = "direction_eng";
@@ -6606,7 +6751,7 @@
},
/turf/simulated/wall,
/area/tether/surfacebase/north_stairs_three)
-"lf" = (
+"alf" = (
/obj/structure/sign/directions/medical{
dir = 4;
pixel_y = 8
@@ -6623,7 +6768,7 @@
},
/turf/simulated/wall,
/area/tether/surfacebase/north_stairs_three)
-"lg" = (
+"alg" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -6646,14 +6791,14 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"lh" = (
+/area/tether/surfacebase/surface_three_hall)
+"alh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"li" = (
+/area/tether/surfacebase/surface_three_hall)
+"ali" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -6666,80 +6811,85 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
-/obj/structure/window/basic{
- dir = 4
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"alj" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/captain)
+"alk" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"lj" = (
-/obj/structure/railing{
- dir = 8
+/area/tether/surfacebase/surface_three_hall)
+"all" = (
+/obj/machinery/shower{
+ pixel_y = 8
},
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"lk" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"ll" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"lm" = (
+/obj/item/weapon/soap/deluxe,
+/obj/structure/curtain/open/shower,
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/captain)
+"alm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/window/basic{
+/obj/effect/floor_decal/corner/blue/border{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ln" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 10
},
-/obj/machinery/camera/network/tether{
- dir = 9
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/computer/id_restorer{
+ dir = 4;
+ icon_state = "restorer";
+ pixel_x = -30
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"lo" = (
+/area/tether/surfacebase/surface_three_hall)
+"aln" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ icon_state = "right";
+ name = "Reception Window"
+ },
+/obj/machinery/door/window/brigdoor/eastright{
+ dir = 8;
+ name = "Head of Personnel's Desk";
+ req_access = list(57)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "hop_office_desk";
+ layer = 3.1;
+ name = "HoP's Shutters"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"alo" = (
/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/atrium_three)
-"lp" = (
+/area/tether/surfacebase/surface_three_hall)
+"alp" = (
/obj/machinery/vending/coffee,
/obj/machinery/alarm{
dir = 4;
@@ -6748,30 +6898,33 @@
pixel_y = 0
},
/turf/simulated/floor/wood,
-/area/tether/surfacebase/atrium_three)
-"lq" = (
+/area/tether/surfacebase/surface_three_hall)
+"alq" = (
/turf/simulated/floor/wood,
-/area/tether/surfacebase/atrium_three)
-"lr" = (
+/area/tether/surfacebase/surface_three_hall)
+"alr" = (
/obj/structure/bed/chair/wood{
dir = 8
},
/turf/simulated/floor/wood,
-/area/tether/surfacebase/atrium_three)
-"ls" = (
+/area/tether/surfacebase/surface_three_hall)
+"als" = (
/obj/machinery/washing_machine,
/obj/effect/floor_decal/techfloor{
dir = 8
},
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"lt" = (
+"alt" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"lu" = (
+"alu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -6783,7 +6936,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"lv" = (
+"alv" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
@@ -6792,7 +6945,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"lw" = (
+"alw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -6801,7 +6954,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/pool)
-"lx" = (
+"alx" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/floor_decal/spline/plain{
dir = 9
@@ -6809,7 +6962,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"ly" = (
+"aly" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/floor_decal/spline/plain{
dir = 1
@@ -6819,16 +6972,28 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lz" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+"alz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/pool)
-"lA" = (
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/third_south)
+"alA" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
@@ -6838,9 +7003,10 @@
icon_state = "cabinet_closed";
name = "Clothing Storage"
},
+/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lB" = (
+"alB" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
@@ -6852,7 +7018,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lC" = (
+"alC" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
@@ -6861,7 +7027,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lD" = (
+"alD" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
@@ -6877,13 +7043,13 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lE" = (
+"alE" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lF" = (
+"alF" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
@@ -6892,7 +7058,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lG" = (
+"alG" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
@@ -6908,7 +7074,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"lH" = (
+"alH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -6918,38 +7084,52 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"lI" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 5
+"alI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/pool)
-"lJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"alJ" = (
/obj/machinery/vending/fitness,
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"lK" = (
+"alK" = (
/obj/structure/closet/athletic_mixed,
/obj/machinery/status_display{
pixel_y = 30
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"lL" = (
+"alL" = (
/obj/machinery/fitness/punching_bag/clown,
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"lM" = (
-/obj/machinery/camera/network/civilian,
+"alM" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
/turf/simulated/floor/wood,
-/area/crew_quarters/recreation_area)
-"lN" = (
+/area/crew_quarters/bar)
+"alN" = (
/obj/machinery/fitness/heavy/lifter,
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"lO" = (
+"alO" = (
/obj/structure/closet/athletic_mixed,
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -6960,14 +7140,14 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"lP" = (
+"alP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"lQ" = (
+/area/tether/surfacebase/surface_three_hall)
+"alQ" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -6981,7 +7161,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"lR" = (
+"alR" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -6990,7 +7170,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"lS" = (
+"alS" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -6999,17 +7179,17 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"lT" = (
+"alT" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"lU" = (
+"alU" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"lV" = (
+"alV" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
},
@@ -7021,28 +7201,28 @@
dir = 1
},
/area/tether/surfacebase/north_stairs_three)
-"lW" = (
+"alW" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"lX" = (
+/area/tether/surfacebase/surface_three_hall)
+"alX" = (
/obj/structure/railing{
dir = 8
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"lY" = (
+/area/tether/surfacebase/surface_three_hall)
+"alY" = (
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"lZ" = (
+/area/tether/surfacebase/surface_three_hall)
+"alZ" = (
/obj/structure/railing{
dir = 4
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"ma" = (
+/area/tether/surfacebase/surface_three_hall)
+"ama" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -7061,18 +7241,18 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"mb" = (
+/area/tether/surfacebase/surface_three_hall)
+"amb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"mc" = (
+/area/tether/surfacebase/surface_three_hall)
+"amc" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/wood,
-/area/tether/surfacebase/atrium_three)
-"md" = (
+/area/tether/surfacebase/surface_three_hall)
+"amd" = (
/obj/structure/table/glass,
/obj/item/weapon/material/ashtray/plastic,
/obj/item/device/radio/intercom{
@@ -7080,33 +7260,43 @@
pixel_x = 24
},
/turf/simulated/floor/wood,
-/area/tether/surfacebase/atrium_three)
-"me" = (
+/area/tether/surfacebase/surface_three_hall)
+"ame" = (
/obj/machinery/washing_machine,
/obj/effect/floor_decal/techfloor{
dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"mf" = (
+"amf" = (
/obj/structure/ladder,
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"mg" = (
+"amg" = (
/obj/machinery/light/small,
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"mh" = (
-/obj/machinery/space_heater,
-/obj/effect/floor_decal/techfloor,
-/obj/machinery/camera/network/civilian{
+"amh" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
-/area/crew_quarters/panic_shelter)
-"mi" = (
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled,
+/area/rnd/research_foyer)
+"ami" = (
/obj/machinery/space_heater,
/obj/effect/floor_decal/techfloor,
/obj/machinery/firealarm{
@@ -7116,13 +7306,13 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"mj" = (
+"amj" = (
/obj/machinery/space_heater,
/obj/effect/floor_decal/techfloor,
/obj/effect/floor_decal/techfloor/hole/right,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"mk" = (
+"amk" = (
/obj/effect/floor_decal/techfloor/corner,
/obj/effect/floor_decal/techfloor/corner{
dir = 8
@@ -7136,7 +7326,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"ml" = (
+"aml" = (
/obj/effect/floor_decal/techfloor{
dir = 6
},
@@ -7146,7 +7336,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"mm" = (
+"amm" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
},
@@ -7155,13 +7345,13 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mn" = (
+"amn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mo" = (
+"amo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -7170,7 +7360,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mp" = (
+"amp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7179,7 +7369,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mq" = (
+"amq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7193,7 +7383,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mr" = (
+"amr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7207,7 +7397,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"ms" = (
+"ams" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
@@ -7222,7 +7412,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mt" = (
+"amt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -7236,29 +7426,34 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mu" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
+"amu" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 4;
+ pixel_y = 26
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/pool)
-"mv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/outpost/xenobiology/outpost_hallway)
+"amv" = (
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"mw" = (
+"amw" = (
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"mx" = (
+"amx" = (
/obj/machinery/light_switch{
pixel_x = 25
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"my" = (
+"amy" = (
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/north_stairs_three)
-"mz" = (
+"amz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -7267,7 +7462,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/north_stairs_three)
-"mA" = (
+"amA" = (
/obj/structure/cable{
icon_state = "0-4"
},
@@ -7278,7 +7473,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"mB" = (
+"amB" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -7293,8 +7488,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"mC" = (
-/obj/machinery/light/small,
+"amC" = (
/obj/effect/floor_decal/industrial/warning/corner,
/obj/structure/cable{
icon_state = "4-8"
@@ -7306,9 +7500,12 @@
dir = 2;
pixel_y = -24
},
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"mD" = (
+"amD" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable{
icon_state = "4-8"
@@ -7321,7 +7518,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"mE" = (
+"amE" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable{
icon_state = "4-8"
@@ -7337,7 +7534,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"mF" = (
+"amF" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
},
@@ -7358,7 +7555,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/turf/simulated/floor/tiled/monofloor,
/area/tether/surfacebase/north_stairs_three)
-"mG" = (
+"amG" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -7372,8 +7569,8 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"mH" = (
+/area/tether/surfacebase/surface_three_hall)
+"amH" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -7387,8 +7584,8 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"mI" = (
+/area/tether/surfacebase/surface_three_hall)
+"amI" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -7417,8 +7614,8 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"mJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"amJ" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/maintenance/int{
name = "Fire/Phoron Shelter";
@@ -7426,12 +7623,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"mK" = (
+"amK" = (
/obj/effect/wingrille_spawn/reinforced_phoron,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/crew_quarters/panic_shelter)
-"mL" = (
+"amL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass,
@@ -7446,40 +7643,40 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/crew_quarters/panic_shelter)
-"mM" = (
+"amM" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mN" = (
+"amN" = (
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mO" = (
+"amO" = (
/obj/effect/floor_decal/spline/plain{
dir = 9
},
/turf/simulated/floor/water/deep/pool,
/area/crew_quarters/pool)
-"mP" = (
+"amP" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
/turf/simulated/floor/water/deep/pool,
/area/crew_quarters/pool)
-"mQ" = (
+"amQ" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
/turf/simulated/floor/water/pool,
/area/crew_quarters/pool)
-"mR" = (
+"amR" = (
/obj/effect/floor_decal/spline/plain{
dir = 5
},
/turf/simulated/floor/water/pool,
/area/crew_quarters/pool)
-"mS" = (
+"amS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -7493,25 +7690,16 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"mT" = (
-/obj/effect/floor_decal/spline/plain{
+"amT" = (
+/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/mauve/bordercorner{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/pool)
-"mU" = (
+/turf/simulated/floor/tiled,
+/area/rnd/research/researchdivision)
+"amU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7525,24 +7713,32 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"mV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"amV" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
-/obj/machinery/camera/network/civilian{
- dir = 9
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
},
+/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/crew_quarters/pool)
-"mW" = (
+/area/rnd/research/researchdivision)
+"amW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -7559,7 +7755,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/recreation_area)
-"mX" = (
+"amX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7568,7 +7764,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"mY" = (
+"amY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -7582,7 +7778,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"mZ" = (
+"amZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7591,7 +7787,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"na" = (
+"ana" = (
/obj/structure/table/woodentable,
/obj/item/clothing/glasses/threedglasses,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -7599,7 +7795,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"nb" = (
+"anb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -7608,7 +7804,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/recreation_area)
-"nc" = (
+"anc" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock{
name = "Secondary Janitorial Closet";
@@ -7616,46 +7812,57 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/tether/surfacebase/north_stairs_three)
-"nd" = (
-/obj/machinery/camera/network/tether{
+"and" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"ane" = (
/turf/simulated/open,
/area/tether/surfacebase/north_stairs_three)
-"ne" = (
-/turf/simulated/open,
-/area/tether/surfacebase/north_stairs_three)
-"nf" = (
+"anf" = (
/obj/structure/sign/directions/evac{
dir = 8
},
/turf/simulated/wall,
/area/tether/surfacebase/north_stairs_three)
-"ng" = (
-/obj/machinery/camera/network/tether{
+"ang" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
+/obj/item/device/radio/intercom{
+ pixel_y = -24
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
+/obj/effect/floor_decal/borderfloorblack,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"nh" = (
+/area/rnd/outpost/xenobiology/outpost_north_airlock)
+"anh" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -7663,8 +7870,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ni" = (
+/area/tether/surfacebase/surface_three_hall)
+"ani" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -7673,8 +7880,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"nj" = (
+/area/tether/surfacebase/surface_three_hall)
+"anj" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -7699,8 +7906,8 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"nk" = (
+/area/tether/surfacebase/surface_three_hall)
+"ank" = (
/obj/machinery/door/airlock/maintenance/int{
name = "Fire/Phoron Shelter";
req_one_access = list()
@@ -7719,7 +7926,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/crew_quarters/panic_shelter)
-"nl" = (
+"anl" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -7739,7 +7946,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nm" = (
+"anm" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -7754,7 +7961,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nn" = (
+"ann" = (
/obj/structure/sign/nosmoking_2{
pixel_x = 29
},
@@ -7772,7 +7979,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"no" = (
+"ano" = (
/obj/machinery/light/small{
dir = 1
},
@@ -7782,7 +7989,7 @@
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"np" = (
+"anp" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -7790,7 +7997,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nq" = (
+"anq" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -7798,7 +8005,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nr" = (
+"anr" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -7808,7 +8015,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"ns" = (
+"ans" = (
/obj/machinery/computer/area_atmos{
range = 8
},
@@ -7817,7 +8024,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nt" = (
+"ant" = (
/obj/effect/floor_decal/techfloor/corner{
dir = 1
},
@@ -7833,7 +8040,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nu" = (
+"anu" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 4
@@ -7843,7 +8050,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nv" = (
+"anv" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -7857,25 +8064,25 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"nw" = (
+"anw" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
},
/turf/simulated/floor/water/deep/pool,
/area/crew_quarters/pool)
-"nx" = (
+"anx" = (
/turf/simulated/floor/water/deep/pool,
/area/crew_quarters/pool)
-"ny" = (
+"any" = (
/turf/simulated/floor/water/pool,
/area/crew_quarters/pool)
-"nz" = (
+"anz" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
},
/turf/simulated/floor/water/pool,
/area/crew_quarters/pool)
-"nA" = (
+"anA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -7885,21 +8092,21 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"nB" = (
+"anB" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"nC" = (
+"anC" = (
/obj/machinery/door/airlock/glass{
name = "Recreation Area"
},
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/steel_grid,
/area/crew_quarters/recreation_area)
-"nD" = (
+"anD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
@@ -7910,13 +8117,13 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"nE" = (
+"anE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"nF" = (
+"anF" = (
/obj/structure/table/woodentable,
/obj/item/weapon/coin/silver,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -7925,15 +8132,15 @@
/obj/machinery/recharger,
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"nG" = (
+"anG" = (
/obj/structure/flora/tree/sif,
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/north_stairs_three)
-"nH" = (
+"anH" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"nI" = (
+"anI" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
@@ -7942,11 +8149,11 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"nJ" = (
+"anJ" = (
/obj/structure/sign/directions/evac,
/turf/simulated/wall,
/area/tether/surfacebase/north_stairs_three)
-"nK" = (
+"anK" = (
/obj/machinery/computer/guestpass{
dir = 4;
pixel_x = -28;
@@ -7965,12 +8172,12 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"nL" = (
+/area/tether/surfacebase/surface_three_hall)
+"anL" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"nM" = (
+/area/tether/surfacebase/surface_three_hall)
+"anM" = (
/obj/structure/sign/fire{
name = "\improper PHORON/FIRE SHELTER";
pixel_x = 33
@@ -7990,8 +8197,8 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"nN" = (
+/area/tether/surfacebase/surface_three_hall)
+"anN" = (
/obj/machinery/light/small{
dir = 8;
pixel_x = 0
@@ -8005,7 +8212,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nO" = (
+"anO" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/firealarm{
dir = 1;
@@ -8018,7 +8225,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nP" = (
+"anP" = (
/obj/effect/floor_decal/techfloor,
/obj/structure/cable/green{
d1 = 2;
@@ -8036,7 +8243,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nQ" = (
+"anQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -8055,7 +8262,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/crew_quarters/panic_shelter)
-"nR" = (
+"anR" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -8070,7 +8277,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nS" = (
+"anS" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -8083,7 +8290,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nT" = (
+"anT" = (
/obj/effect/floor_decal/techfloor,
/obj/effect/floor_decal/techfloor/hole/right,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -8102,7 +8309,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nU" = (
+"anU" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/shower{
dir = 1
@@ -8123,7 +8330,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nV" = (
+"anV" = (
/obj/machinery/door/airlock/hatch{
name = "Fire/Phoron Shelter Secure Hatch";
req_one_access = list()
@@ -8142,7 +8349,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/crew_quarters/panic_shelter)
-"nW" = (
+"anW" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -31
},
@@ -8161,7 +8368,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nX" = (
+"anX" = (
/obj/machinery/light/small,
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -8169,7 +8376,7 @@
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nY" = (
+"anY" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
@@ -8184,7 +8391,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"nZ" = (
+"anZ" = (
/obj/structure/table/glass,
/obj/item/weapon/inflatable_duck,
/obj/effect/floor_decal/spline/plain{
@@ -8198,11 +8405,11 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"oa" = (
+"aoa" = (
/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"ob" = (
+"aob" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
dir = 8;
@@ -8212,7 +8419,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"oc" = (
+"aoc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -8222,7 +8429,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"od" = (
+"aod" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -8232,7 +8439,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"oe" = (
+"aoe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -8244,7 +8451,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"of" = (
+"aof" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -8255,10 +8462,10 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"og" = (
+"aog" = (
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"oh" = (
+"aoh" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -8266,7 +8473,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"oi" = (
+"aoi" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -8284,15 +8491,15 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oj" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoj" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ok" = (
+/area/tether/surfacebase/surface_three_hall)
+"aok" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -8311,11 +8518,11 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ol" = (
+/area/tether/surfacebase/surface_three_hall)
+"aol" = (
/turf/simulated/wall/r_wall,
/area/vacant/vacant_shop)
-"om" = (
+"aom" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/glass,
@@ -8329,10 +8536,10 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_shop)
-"on" = (
+"aon" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/freezer)
-"oo" = (
+"aoo" = (
/obj/machinery/door/airlock/maintenance/common{
name = "Freezer Maintenance Access";
req_access = list(28)
@@ -8340,10 +8547,10 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/techfloor/grid,
/area/crew_quarters/freezer)
-"op" = (
+"aop" = (
/turf/simulated/wall/r_wall,
/area/hydroponics/cafegarden)
-"oq" = (
+"aoq" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -8352,20 +8559,20 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"or" = (
+"aor" = (
/obj/effect/floor_decal/spline/plain{
dir = 9
},
/obj/item/weapon/beach_ball,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"os" = (
+"aos" = (
/obj/effect/floor_decal/spline/plain{
dir = 5
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"ot" = (
+"aot" = (
/obj/structure/table/glass,
/obj/machinery/light{
dir = 4;
@@ -8374,7 +8581,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"ou" = (
+"aou" = (
/obj/structure/reagent_dispensers/water_cooler/full,
/obj/item/device/radio/intercom{
dir = 2;
@@ -8387,7 +8594,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"ov" = (
+"aov" = (
/obj/machinery/scale,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8398,14 +8605,14 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"ow" = (
+"aow" = (
/obj/machinery/scale,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"ox" = (
+"aox" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
@@ -8419,11 +8626,11 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"oy" = (
+"aoy" = (
/obj/structure/sign/department/xenolab,
/turf/simulated/wall,
/area/rnd/staircase/thirdfloor)
-"oz" = (
+"aoz" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -8437,8 +8644,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oA" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoA" = (
/obj/machinery/light_switch{
pixel_y = -25
},
@@ -8447,14 +8654,14 @@
/obj/item/weapon/storage/box/lights/mixed,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"oB" = (
+"aoB" = (
/obj/machinery/light/small,
/obj/structure/mopbucket,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/item/weapon/mop,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_three)
-"oC" = (
+"aoC" = (
/obj/machinery/status_display{
pixel_x = -32
},
@@ -8471,8 +8678,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oD" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoD" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -8487,14 +8694,14 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oE" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoE" = (
/obj/structure/sign/directions/evac{
dir = 1
},
/turf/simulated/wall/r_wall,
/area/vacant/vacant_shop)
-"oF" = (
+"aoF" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 6
},
@@ -8505,8 +8712,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oG" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoG" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -8516,8 +8723,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oH" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -8527,7 +8734,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"oI" = (
+"aoI" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -8545,19 +8752,29 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoJ" = (
/turf/simulated/wall,
/area/crew_quarters/freezer)
-"oK" = (
+"aoK" = (
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"oL" = (
-/obj/structure/closet/crate/freezer,
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/freezer)
-"oM" = (
+"aoL" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/research/testingrange)
+"aoM" = (
/obj/structure/kitchenspike,
/obj/machinery/alarm{
pixel_y = 22;
@@ -8565,25 +8782,32 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"oN" = (
+"aoN" = (
/obj/structure/kitchenspike,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"oO" = (
+"aoO" = (
/obj/structure/flora/ausbushes/grassybush,
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"oP" = (
+"aoP" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"oQ" = (
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/grass,
-/area/hydroponics/cafegarden)
-"oR" = (
+"aoQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/research/testingrange)
+"aoR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -8592,24 +8816,24 @@
},
/turf/simulated/floor/plating,
/area/hydroponics/cafegarden)
-"oS" = (
+"aoS" = (
/obj/effect/floor_decal/spline/plain{
dir = 10
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"oT" = (
+"aoT" = (
/obj/effect/floor_decal/spline/plain,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"oU" = (
+"aoU" = (
/obj/effect/floor_decal/spline/plain{
dir = 6
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"oV" = (
+"aoV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -8624,7 +8848,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/crew_quarters/recreation_area)
-"oW" = (
+"aoW" = (
/obj/machinery/alarm{
pixel_y = 20
},
@@ -8633,12 +8857,12 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"oX" = (
+"aoX" = (
/turf/simulated/wall,
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"oY" = (
+"aoY" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
dir = 8;
@@ -8661,8 +8885,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"oZ" = (
+/area/tether/surfacebase/surface_three_hall)
+"aoZ" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -8673,15 +8897,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pa" = (
+/area/tether/surfacebase/surface_three_hall)
+"apa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pb" = (
+/area/tether/surfacebase/surface_three_hall)
+"apb" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -8702,11 +8926,11 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pc" = (
+/area/tether/surfacebase/surface_three_hall)
+"apc" = (
/turf/simulated/wall,
/area/vacant/vacant_shop)
-"pd" = (
+"apd" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -8723,8 +8947,8 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pe" = (
+/area/tether/surfacebase/surface_three_hall)
+"ape" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -8740,8 +8964,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pf" = (
+/area/tether/surfacebase/surface_three_hall)
+"apf" = (
/obj/structure/cable{
icon_state = "2-8"
},
@@ -8761,8 +8985,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pg" = (
+/area/tether/surfacebase/surface_three_hall)
+"apg" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -8786,20 +9010,20 @@
/obj/random/maintenance/clean,
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"ph" = (
+"aph" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"pi" = (
+"api" = (
/obj/machinery/light_switch{
pixel_x = 25
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"pj" = (
+"apj" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -8808,14 +9032,14 @@
},
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"pk" = (
+"apk" = (
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"pl" = (
+"apl" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"pm" = (
+"apm" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
},
@@ -8825,14 +9049,14 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"pn" = (
+"apn" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"po" = (
+"apo" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -8847,8 +9071,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pp" = (
+/area/tether/surfacebase/surface_three_hall)
+"app" = (
/obj/machinery/atm{
pixel_y = 31
},
@@ -8869,8 +9093,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pq" = (
+/area/tether/surfacebase/surface_three_hall)
+"apq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -8886,8 +9110,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pr" = (
+/area/tether/surfacebase/surface_three_hall)
+"apr" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -8905,8 +9129,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ps" = (
+/area/tether/surfacebase/surface_three_hall)
+"aps" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -8928,8 +9152,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pt" = (
+/area/tether/surfacebase/surface_three_hall)
+"apt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -8945,8 +9169,8 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/machinery/vending/nifsoft_shop,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pu" = (
+/area/tether/surfacebase/surface_three_hall)
+"apu" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -8958,8 +9182,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pv" = (
+/area/tether/surfacebase/surface_three_hall)
+"apv" = (
/obj/machinery/shower{
dir = 4;
icon_state = "shower";
@@ -8971,12 +9195,12 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"pw" = (
+"apw" = (
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"px" = (
+"apx" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -8984,7 +9208,7 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"py" = (
+"apy" = (
/obj/machinery/shower{
dir = 8;
icon_state = "shower";
@@ -8996,15 +9220,15 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"pz" = (
+"apz" = (
/obj/structure/table/rack,
/obj/random/maintenance/research,
/obj/random/maintenance/medical,
/obj/random/maintenance/clean,
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"pA" = (
+/area/tether/surfacebase/surface_three_hall)
+"apA" = (
/obj/structure/table/steel,
/obj/fiftyspawner/steel,
/obj/effect/floor_decal/techfloor{
@@ -9012,7 +9236,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"pB" = (
+"apB" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -9026,8 +9250,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pC" = (
+/area/tether/surfacebase/surface_three_hall)
+"apC" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -9049,8 +9273,8 @@
pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pD" = (
+/area/tether/surfacebase/surface_three_hall)
+"apD" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -9066,8 +9290,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pE" = (
+/area/tether/surfacebase/surface_three_hall)
+"apE" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -9089,48 +9313,56 @@
sortType = "Library"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pF" = (
+/area/tether/surfacebase/surface_three_hall)
+"apF" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"pG" = (
+"apG" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"pH" = (
+"apH" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"pI" = (
+"apI" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"pJ" = (
+"apJ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"pK" = (
-/obj/effect/floor_decal/spline/plain{
+"apK" = (
+/obj/structure/sign/department/robo{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
+/obj/effect/floor_decal/corner/mauve/border{
dir = 4
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/pool)
-"pL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/research/researchdivision)
+"apL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -9139,7 +9371,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"pM" = (
+"apM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -9155,7 +9387,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"pN" = (
+"apN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -9171,7 +9403,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/steel_grid,
/area/crew_quarters/pool)
-"pO" = (
+"apO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -9188,8 +9420,8 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pP" = (
+/area/tether/surfacebase/surface_three_hall)
+"apP" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
@@ -9207,7 +9439,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"pQ" = (
+"apQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9223,8 +9455,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pR" = (
+/area/tether/surfacebase/surface_three_hall)
+"apR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -9238,11 +9470,11 @@
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pS" = (
+/area/tether/surfacebase/surface_three_hall)
+"apS" = (
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pT" = (
+/area/tether/surfacebase/surface_three_hall)
+"apT" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -9262,8 +9494,8 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pU" = (
+/area/tether/surfacebase/surface_three_hall)
+"apU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -9281,7 +9513,7 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"pV" = (
+"apV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -9289,7 +9521,7 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"pW" = (
+"apW" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -9297,7 +9529,7 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"pX" = (
+"apX" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -9310,8 +9542,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pY" = (
+/area/tether/surfacebase/surface_three_hall)
+"apY" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -9325,8 +9557,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"pZ" = (
+/area/tether/surfacebase/surface_three_hall)
+"apZ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -9341,8 +9573,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qa" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqa" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
@@ -9360,8 +9592,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qb" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqb" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -9372,60 +9604,29 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qc" = (
-/obj/effect/floor_decal/borderfloor{
+/area/tether/surfacebase/surface_three_hall)
+"aqc" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/captain)
+"aqd" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qe" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqe" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qf" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -9442,8 +9643,8 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qg" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqg" = (
/obj/structure/grille,
/obj/structure/railing{
dir = 8
@@ -9452,8 +9653,8 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_three)
-"qh" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqh" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
scrub_id = "atrium"
},
@@ -9461,8 +9662,8 @@
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_three)
-"qi" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqi" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment{
@@ -9470,7 +9671,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/vacant/vacant_shop)
-"qj" = (
+"aqj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
d1 = 1;
@@ -9490,7 +9691,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"qk" = (
+"aqk" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -9512,7 +9713,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"ql" = (
+"aql" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
dir = 8;
@@ -9530,7 +9731,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qm" = (
+"aqm" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable/green{
d1 = 4;
@@ -9539,7 +9740,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qn" = (
+"aqn" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
d1 = 2;
@@ -9548,11 +9749,11 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qo" = (
+"aqo" = (
/obj/machinery/gibber,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qp" = (
+"aqp" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
dir = 8;
@@ -9564,7 +9765,7 @@
},
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"qq" = (
+"aqq" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -9572,7 +9773,7 @@
},
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"qr" = (
+"aqr" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -9589,27 +9790,27 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"qs" = (
+"aqs" = (
/obj/effect/floor_decal/spline/plain{
dir = 10
},
/turf/simulated/floor/water/deep/pool,
/area/crew_quarters/pool)
-"qt" = (
+"aqt" = (
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/water/deep/pool,
/area/crew_quarters/pool)
-"qu" = (
+"aqu" = (
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/water/pool,
/area/crew_quarters/pool)
-"qv" = (
+"aqv" = (
/obj/effect/floor_decal/spline/plain{
dir = 6
},
/turf/simulated/floor/water/pool,
/area/crew_quarters/pool)
-"qw" = (
+"aqw" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_research{
frequency = 1392;
@@ -9632,7 +9833,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"qx" = (
+"aqx" = (
/obj/machinery/alarm{
pixel_y = 20
},
@@ -9641,7 +9842,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"qy" = (
+"aqy" = (
/obj/machinery/light{
dir = 1
},
@@ -9659,14 +9860,18 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"qz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera/network/civilian{
- dir = 9
+"aqz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/crew_quarters/pool)
-"qA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_north_airlock)
+"aqA" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -9678,7 +9883,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"qB" = (
+"aqB" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -9695,8 +9900,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qC" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqC" = (
/obj/item/device/radio/intercom{
dir = 1;
pixel_y = 24;
@@ -9710,7 +9915,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"qD" = (
+"aqD" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -9722,7 +9927,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"qE" = (
+"aqE" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
@@ -9736,8 +9941,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qF" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqF" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -9752,7 +9957,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"qG" = (
+"aqG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
@@ -9766,8 +9971,8 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qH" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9780,8 +9985,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qI" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9798,8 +10003,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9819,7 +10024,7 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"qK" = (
+"aqK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -9841,7 +10046,7 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"qL" = (
+"aqL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9849,7 +10054,7 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"qM" = (
+"aqM" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -9862,52 +10067,27 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"qN" = (
+"aqN" = (
/obj/structure/closet/crate,
/obj/random/maintenance/engineering,
/obj/random/maintenance/research,
/obj/random/maintenance/clean,
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"qO" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqO" = (
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"qP" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"qQ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
+/area/tether/surfacebase/surface_three_hall)
+"aqQ" = (
/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qR" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -9916,30 +10096,40 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/structure/window/basic{
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qS" = (
-/obj/machinery/camera/network/tether{
- dir = 9
- },
+/area/tether/surfacebase/surface_three_hall)
+"aqR" = (
/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
+ dir = 5
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qT" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqS" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/third_south)
+"aqT" = (
/obj/structure/sign/directions/medical{
dir = 1;
icon_state = "direction_med";
@@ -9961,8 +10151,8 @@
pixel_y = -10
},
/turf/simulated/wall,
-/area/tether/surfacebase/atrium_three)
-"qU" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqU" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -9979,19 +10169,19 @@
pixel_x = 25
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"qV" = (
+/area/tether/surfacebase/surface_three_hall)
+"aqV" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qW" = (
+"aqW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/obj/machinery/icecream_vat,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qX" = (
+"aqX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -10003,16 +10193,16 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qY" = (
+"aqY" = (
/obj/machinery/chem_master/condimaster,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"qZ" = (
+"aqZ" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/structure/flora/ausbushes/ywflowers,
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"ra" = (
+"ara" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10020,11 +10210,11 @@
},
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"rb" = (
+"arb" = (
/obj/structure/flora/ausbushes/pointybush,
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
-"rc" = (
+"arc" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -10036,44 +10226,44 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rd" = (
+"ard" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"re" = (
+"are" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rf" = (
+"arf" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rg" = (
+"arg" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rh" = (
+"arh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"ri" = (
+"ari" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"rj" = (
+"arj" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -10096,7 +10286,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"rk" = (
+"ark" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
@@ -10119,14 +10309,14 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"rl" = (
+/area/tether/surfacebase/surface_three_hall)
+"arl" = (
/obj/item/weapon/bikehorn/rubberducky,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"rm" = (
+"arm" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
@@ -10135,23 +10325,23 @@
/area/crew_quarters/recreation_area_restroom{
name = "\improper Recreation Area Showers"
})
-"rn" = (
+"arn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"ro" = (
-/obj/machinery/camera/network/civilian{
+"aro" = (
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
-/obj/machinery/door/window/southleft{
- name = "Library Desk Door";
- req_access = list(37)
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
},
-/turf/simulated/floor/carpet,
-/area/library)
-"rp" = (
+/obj/machinery/media/jukebox,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"arp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass,
@@ -10165,7 +10355,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"rq" = (
+"arq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -10179,7 +10369,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/freezer)
-"rr" = (
+"arr" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -10194,13 +10384,13 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"rs" = (
+"ars" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/crew_quarters/kitchen)
-"rt" = (
+"art" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -10213,10 +10403,10 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ru" = (
+"aru" = (
/turf/simulated/wall,
/area/crew_quarters/kitchen)
-"rv" = (
+"arv" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -10225,56 +10415,57 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rw" = (
+"arw" = (
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rx" = (
-/obj/effect/floor_decal/spline/plain,
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/pool)
-"ry" = (
+"arx" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"ary" = (
/obj/effect/floor_decal/spline/plain,
/obj/machinery/light,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rz" = (
+"arz" = (
/obj/effect/floor_decal/spline/plain,
/obj/structure/flora/pottedplant/stoutbush,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rA" = (
+"arA" = (
/obj/effect/floor_decal/spline/plain{
dir = 6
},
/obj/structure/undies_wardrobe,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
-"rB" = (
+"arB" = (
/obj/structure/closet/lasertag/red,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"rC" = (
+"arC" = (
/obj/structure/closet/lasertag/blue,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"rD" = (
+"arD" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -26
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"rE" = (
+"arE" = (
/obj/machinery/vending/cola,
/obj/effect/floor_decal/corner/lightgrey{
dir = 9
@@ -10293,8 +10484,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals9,
/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/atrium_three)
-"rF" = (
+/area/tether/surfacebase/surface_three_hall)
+"arF" = (
/obj/machinery/vending/fitness,
/obj/effect/floor_decal/corner/lightgrey{
dir = 9
@@ -10313,8 +10504,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals9,
/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/atrium_three)
-"rG" = (
+/area/tether/surfacebase/surface_three_hall)
+"arG" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
@@ -10325,8 +10516,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"rH" = (
+/area/tether/surfacebase/surface_three_hall)
+"arH" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -10337,8 +10528,8 @@
dir = 2
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"rI" = (
+/area/tether/surfacebase/surface_three_hall)
+"arI" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -10360,11 +10551,11 @@
pixel_y = 26
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"rJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"arJ" = (
/turf/simulated/wall,
/area/crew_quarters/bar)
-"rK" = (
+"arK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -10385,7 +10576,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"rL" = (
+"arL" = (
/obj/structure/table/bench/wooden,
/obj/machinery/firealarm{
dir = 2;
@@ -10395,14 +10586,17 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"rM" = (
+"arM" = (
/obj/structure/table/bench/wooden,
/obj/machinery/alarm{
pixel_y = 22
},
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"rN" = (
+"arN" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/closet/chefcloset,
/obj/item/glass_jar,
@@ -10420,7 +10614,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"rO" = (
+"arO" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -10431,7 +10625,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"rP" = (
+"arP" = (
/obj/structure/table/standard,
/obj/machinery/microwave,
/obj/machinery/newscaster{
@@ -10440,7 +10634,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"rQ" = (
+"arQ" = (
/obj/structure/table/standard,
/obj/machinery/microwave,
/obj/effect/floor_decal/corner/grey/diagonal,
@@ -10452,13 +10646,13 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"rR" = (
+"arR" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"rS" = (
+"arS" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/cable/green{
d1 = 1;
@@ -10467,7 +10661,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"rT" = (
+"arT" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/closet/secure_closet/freezer/meat,
/obj/machinery/alarm{
@@ -10477,7 +10671,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"rU" = (
+"arU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -10487,17 +10681,17 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/pool)
-"rV" = (
+"arV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/crew_quarters/pool)
-"rW" = (
+"arW" = (
/turf/simulated/wall,
/area/tether/surfacebase/public_garden_three)
-"rX" = (
+"arX" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
@@ -10515,8 +10709,8 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"rY" = (
+/area/tether/surfacebase/surface_three_hall)
+"arY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -10534,8 +10728,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"rZ" = (
+/area/tether/surfacebase/surface_three_hall)
+"arZ" = (
/obj/machinery/newscaster{
pixel_x = 0;
pixel_y = 30
@@ -10557,28 +10751,20 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sa" = (
-/obj/machinery/camera/network/tether,
+/area/tether/surfacebase/surface_three_hall)
+"asa" = (
+/obj/machinery/computer/rdconsole/robotics{
+ dir = 8
+ },
/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sb" = (
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"asb" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10589,7 +10775,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"sc" = (
+"asc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -10604,8 +10790,8 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sd" = (
+/area/tether/surfacebase/surface_three_hall)
+"asd" = (
/obj/machinery/light{
dir = 1
},
@@ -10614,14 +10800,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"se" = (
+"ase" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"sf" = (
+"asf" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -10630,19 +10816,19 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"sg" = (
+"asg" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 5
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"sh" = (
+"ash" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"si" = (
+/area/tether/surfacebase/surface_three_hall)
+"asi" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -10660,8 +10846,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sj" = (
+/area/tether/surfacebase/surface_three_hall)
+"asj" = (
/obj/machinery/atm{
pixel_x = -30
},
@@ -10676,28 +10862,21 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"sk" = (
+"ask" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"sl" = (
-/obj/structure/table/woodentable,
-/obj/machinery/camera/network/civilian{
- dir = 9
+"asl" = (
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
},
-/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
- pixel_x = 3
- },
-/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
- pixel_x = -3;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"sm" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/chargebay)
+"asm" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/structure/extinguisher_cabinet{
@@ -10707,7 +10886,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sn" = (
+"asn" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -10726,7 +10905,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"so" = (
+"aso" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/cable/green{
d1 = 4;
@@ -10735,7 +10914,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sp" = (
+"asp" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/cable/green{
d1 = 4;
@@ -10745,7 +10924,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sq" = (
+"asq" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/cable/green{
d1 = 1;
@@ -10754,19 +10933,13 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sr" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/obj/machinery/camera/network/civilian{
- dir = 9
+"asr" = (
+/obj/structure/bed/chair/comfy{
+ dir = 8
},
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"ss" = (
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/bar_backroom)
+"ass" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -10783,8 +10956,8 @@
pixel_x = -32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"st" = (
+/area/tether/surfacebase/surface_three_hall)
+"ast" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -10796,8 +10969,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"su" = (
+/area/tether/surfacebase/surface_three_hall)
+"asu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -10809,8 +10982,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sv" = (
+/area/tether/surfacebase/surface_three_hall)
+"asv" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -10818,8 +10991,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sw" = (
+/area/tether/surfacebase/surface_three_hall)
+"asw" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -10827,8 +11000,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sx" = (
+/area/tether/surfacebase/surface_three_hall)
+"asx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -10839,8 +11012,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sy" = (
+/area/tether/surfacebase/surface_three_hall)
+"asy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -10853,8 +11026,8 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sz" = (
+/area/tether/surfacebase/surface_three_hall)
+"asz" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -10863,27 +11036,32 @@
},
/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sA" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
+/area/tether/surfacebase/surface_three_hall)
+"asA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ on = 0;
+ pixel_x = -10;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"asB" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j1s";
@@ -10894,8 +11072,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sC" = (
+/area/tether/surfacebase/surface_three_hall)
+"asC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -10903,8 +11081,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sD" = (
+/area/tether/surfacebase/surface_three_hall)
+"asD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -10915,8 +11093,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sE" = (
+/area/tether/surfacebase/surface_three_hall)
+"asE" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -10943,8 +11121,8 @@
},
/obj/structure/flora/pottedplant,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sF" = (
+/area/tether/surfacebase/surface_three_hall)
+"asF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -10953,7 +11131,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
-"sG" = (
+"asG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -10966,14 +11144,14 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"sH" = (
+"asH" = (
/obj/structure/table/bench/wooden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"sI" = (
+"asI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -10988,7 +11166,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/kitchen)
-"sJ" = (
+"asJ" = (
/obj/effect/floor_decal/corner/grey/diagonal{
dir = 4
},
@@ -11005,7 +11183,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sK" = (
+"asK" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -11021,7 +11199,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sL" = (
+"asL" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/item/weapon/book/manual/chef_recipes,
@@ -11033,7 +11211,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sM" = (
+"asM" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/item/weapon/reagent_containers/food/condiment/enzyme{
@@ -11045,7 +11223,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sN" = (
+"asN" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/disposalpipe/segment{
@@ -11054,18 +11232,18 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sO" = (
+"asO" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sP" = (
+"asP" = (
/obj/machinery/cooker/grill,
/obj/effect/floor_decal/industrial/warning/dust{
dir = 9
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"sQ" = (
+"asQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -11074,7 +11252,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/kitchen)
-"sR" = (
+"asR" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -11086,8 +11264,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sS" = (
+/area/tether/surfacebase/surface_three_hall)
+"asS" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
@@ -11101,37 +11279,23 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sT" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sU" = (
+/area/tether/surfacebase/surface_three_hall)
+"asT" = (
+/turf/simulated/wall/r_wall,
+/area/bridge)
+"asU" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"sV" = (
+/area/tether/surfacebase/surface_three_hall)
+"asV" = (
/obj/machinery/door/airlock/glass,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/steel_grid,
/area/crew_quarters/bar)
-"sW" = (
+"asW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -11141,10 +11305,10 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"sX" = (
+"asX" = (
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"sY" = (
+"asY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -11156,14 +11320,14 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/kitchen)
-"sZ" = (
+"asZ" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/table/standard,
/obj/item/weapon/material/kitchen/rollingpin,
/obj/item/weapon/material/knife/butch,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ta" = (
+"ata" = (
/obj/structure/table/standard,
/obj/machinery/reagentgrinder,
/obj/machinery/light{
@@ -11173,7 +11337,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tb" = (
+"atb" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/light{
@@ -11183,20 +11347,20 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tc" = (
+"atc" = (
/obj/machinery/cooker/candy,
/obj/effect/floor_decal/industrial/warning/dust{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"td" = (
+"atd" = (
/obj/structure/disposalpipe/junction{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"te" = (
+/area/tether/surfacebase/surface_three_hall)
+"ate" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -11204,8 +11368,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tf" = (
+/area/tether/surfacebase/surface_three_hall)
+"atf" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -11228,8 +11392,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tg" = (
+/area/tether/surfacebase/surface_three_hall)
+"atg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -11239,26 +11403,26 @@
/obj/structure/sign/department/bar,
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
-"th" = (
+"ath" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"ti" = (
+"ati" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"tj" = (
+"atj" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tk" = (
+"atk" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -11274,7 +11438,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tl" = (
+"atl" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/item/weapon/packageWrap,
@@ -11283,14 +11447,14 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tm" = (
+"atm" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/sink/kitchen{
pixel_y = 28
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tn" = (
+"atn" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/item/weapon/reagent_containers/food/snacks/mint,
@@ -11303,31 +11467,31 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"to" = (
+"ato" = (
/obj/machinery/cooker/cereal,
/obj/effect/floor_decal/industrial/warning/dust{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tp" = (
+"atp" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/landmark/start{
name = "Scientist"
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tq" = (
+"atq" = (
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tr" = (
+"atr" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"ts" = (
+"ats" = (
/turf/simulated/wall,
/area/hallway/lower/third_south)
-"tt" = (
+"att" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -11345,16 +11509,16 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tu" = (
+/area/tether/surfacebase/surface_three_hall)
+"atu" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tv" = (
+/area/tether/surfacebase/surface_three_hall)
+"atv" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11364,8 +11528,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tw" = (
+/area/tether/surfacebase/surface_three_hall)
+"atw" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11376,8 +11540,8 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tx" = (
+/area/tether/surfacebase/surface_three_hall)
+"atx" = (
/obj/machinery/door/airlock/glass,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -11387,7 +11551,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/crew_quarters/bar)
-"ty" = (
+"aty" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -11402,24 +11566,24 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"tz" = (
+"atz" = (
/obj/machinery/smartfridge{
req_access = list(28)
},
/turf/simulated/wall,
/area/crew_quarters/kitchen)
-"tA" = (
+"atA" = (
/obj/machinery/cooker/fryer,
/obj/effect/floor_decal/industrial/warning/dust{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tB" = (
+"atB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tC" = (
+"atC" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -11428,7 +11592,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tD" = (
+"atD" = (
/obj/structure/table/steel,
/obj/fiftyspawner/steel,
/obj/effect/floor_decal/techfloor{
@@ -11436,11 +11600,11 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tE" = (
+"atE" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
/area/rnd/research_storage)
-"tF" = (
+"atF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -11454,36 +11618,25 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
/area/rnd/research_storage)
-"tG" = (
+"atG" = (
/turf/simulated/wall/r_wall,
/area/hallway/lower/third_south)
-"tH" = (
+"atH" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
scrub_id = "atrium"
},
/turf/simulated/floor/tiled/techmaint,
/area/hallway/lower/third_south)
-"tI" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
+"atI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light/small{
dir = 8
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tJ" = (
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"atJ" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j1s";
@@ -11494,8 +11647,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tK" = (
+/area/tether/surfacebase/surface_three_hall)
+"atK" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -11508,8 +11661,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tL" = (
+/area/tether/surfacebase/surface_three_hall)
+"atL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -11520,8 +11673,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tM" = (
+/area/tether/surfacebase/surface_three_hall)
+"atM" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -11548,8 +11701,8 @@
},
/obj/structure/flora/pottedplant,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"tN" = (
+/area/tether/surfacebase/surface_three_hall)
+"atN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
@@ -11567,7 +11720,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"tO" = (
+"atO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -11581,7 +11734,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"tP" = (
+"atP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -11600,7 +11753,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tQ" = (
+"atQ" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11621,7 +11774,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tR" = (
+"atR" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -11642,22 +11795,25 @@
/obj/structure/cable/green{
icon_state = "0-8"
},
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tS" = (
+"atS" = (
/obj/machinery/cooker/oven,
/obj/effect/floor_decal/industrial/warning/dust{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"tT" = (
+"atT" = (
/turf/simulated/wall/r_wall,
/area/rnd/research)
-"tU" = (
+"atU" = (
/turf/simulated/wall,
/area/rnd/research)
-"tV" = (
+"atV" = (
/obj/structure/table/steel,
/obj/item/device/electronic_assembly/large/default,
/obj/machinery/light,
@@ -11666,7 +11822,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tW" = (
+"atW" = (
/obj/structure/table/steel,
/obj/item/device/integrated_circuit_printer,
/obj/item/device/radio/intercom{
@@ -11676,23 +11832,24 @@
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tX" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_electronics/debugger{
- pixel_x = -5;
- pixel_y = 0
+"atX" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/item/device/integrated_electronics/wirer{
- pixel_x = 5;
- pixel_y = 0
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 4
},
/obj/machinery/camera/network/research{
- dir = 1
+ icon_state = "camera";
+ dir = 8
},
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"tY" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"atY" = (
/obj/structure/table/steel,
/obj/machinery/recharger{
pixel_y = 0
@@ -11707,10 +11864,10 @@
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"tZ" = (
+"atZ" = (
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"ua" = (
+"aua" = (
/obj/structure/cable/green{
icon_state = "0-4"
},
@@ -11728,7 +11885,7 @@
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"ub" = (
+"aub" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11748,29 +11905,35 @@
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"uc" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"auc" = (
+/obj/structure/table/glass,
+/obj/machinery/recharger{
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/mauve/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/mauve/bordercorner2,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
},
-/obj/effect/floor_decal/techfloor{
- dir = 6
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"ud" = (
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/thirdfloor)
+"aud" = (
/turf/simulated/shuttle/wall/voidcraft/green{
hard_corner = 1
},
/area/tether/elevator)
-"ue" = (
+"aue" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -11779,38 +11942,30 @@
},
/turf/simulated/floor/plating,
/area/hallway/lower/third_south)
-"uf" = (
+"auf" = (
/obj/structure/grille,
/obj/structure/railing,
/turf/simulated/floor/tiled/techmaint,
/area/hallway/lower/third_south)
-"ug" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
+"aug" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"uh" = (
+/area/tether/surfacebase/shuttle_pad)
+"auh" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ui" = (
+/area/tether/surfacebase/surface_three_hall)
+"aui" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -11828,8 +11983,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"uj" = (
+/area/tether/surfacebase/surface_three_hall)
+"auj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/computer/guestpass{
@@ -11840,18 +11995,21 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"uk" = (
+"auk" = (
/obj/structure/table/bench/wooden,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"ul" = (
-/obj/structure/table/bench/wooden,
-/obj/machinery/camera/network/civilian{
- dir = 9
+"aul" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"um" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/outpost/xenobiology/outpost_hallway)
+"aum" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/door/blast/shutters{
dir = 2;
@@ -11862,7 +12020,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"un" = (
+"aun" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/chemical_dispenser/bar_soft/full,
@@ -11875,7 +12033,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"uo" = (
+"auo" = (
/obj/machinery/door/blast/shutters{
dir = 2;
id = "kitchen";
@@ -11886,7 +12044,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"up" = (
+"aup" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/door/blast/shutters{
@@ -11898,7 +12056,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"uq" = (
+"auq" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -11918,7 +12076,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
-"ur" = (
+"aur" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/matter_bin,
/obj/item/weapon/stock_parts/matter_bin,
@@ -11934,9 +12092,10 @@
/obj/effect/floor_decal/corner/mauve/border{
dir = 9
},
+/obj/machinery/camera/network/research,
/turf/simulated/floor/tiled,
/area/rnd/research)
-"us" = (
+"aus" = (
/obj/structure/cable/green{
icon_state = "0-2"
},
@@ -11957,20 +12116,28 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"ut" = (
-/obj/machinery/camera/network/research,
-/obj/effect/floor_decal/borderfloor/corner{
+"aut" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/smes/buildable{
+ charge = 0;
+ output_attempt = 0;
+ outputting = 0;
+ RCon_tag = "Substation - Surface Civilian"
+ },
+/obj/machinery/camera/network/engineering{
dir = 4
},
-/obj/effect/floor_decal/corner/mauve/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/research/researchdivision)
-"uu" = (
+/turf/simulated/floor/plating,
+/area/maintenance/substation/bar{
+ name = "\improper Surface Civilian Substation"
+ })
+"auu" = (
/turf/simulated/open,
/area/rnd/staircase/thirdfloor)
-"uv" = (
+"auv" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -11985,7 +12152,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"uw" = (
+"auw" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -12006,10 +12173,10 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"ux" = (
+"aux" = (
/turf/simulated/floor/holofloor/tiled/dark,
/area/tether/elevator)
-"uy" = (
+"auy" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -12028,26 +12195,27 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"uz" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/camera/network/tether,
+"auz" = (
/obj/item/device/radio/intercom{
dir = 1;
pixel_y = 24;
req_access = list()
},
-/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
-"uA" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/closet/wardrobe/science_white,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_south_airlock)
+"auA" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -12060,7 +12228,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"uB" = (
+"auB" = (
/obj/machinery/light{
dir = 1
},
@@ -12076,7 +12244,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"uC" = (
+"auC" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -12095,7 +12263,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"uD" = (
+"auD" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -12111,7 +12279,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"uE" = (
+"auE" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -12128,7 +12296,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"uF" = (
+"auF" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -12143,8 +12311,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"uG" = (
+/area/tether/surfacebase/surface_three_hall)
+"auG" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -12152,26 +12320,26 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"uH" = (
+/area/tether/surfacebase/surface_three_hall)
+"auH" = (
/obj/structure/railing{
dir = 8
},
/obj/structure/railing,
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"uI" = (
+/area/tether/surfacebase/surface_three_hall)
+"auI" = (
/obj/structure/railing,
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"uJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"auJ" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 4
},
/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"uK" = (
+/area/tether/surfacebase/surface_three_hall)
+"auK" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -12183,16 +12351,16 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"uL" = (
+/area/tether/surfacebase/surface_three_hall)
+"auL" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/beige/border,
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"uM" = (
+/area/tether/surfacebase/surface_three_hall)
+"auM" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -12204,8 +12372,8 @@
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"uN" = (
+/area/tether/surfacebase/surface_three_hall)
+"auN" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -12221,14 +12389,14 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"uO" = (
+"auO" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"uP" = (
+"auP" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
pixel_x = 3
@@ -12239,18 +12407,19 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"uQ" = (
+"auQ" = (
/obj/structure/table/marble,
/obj/effect/floor_decal/spline/plain{
dir = 8
},
/obj/machinery/recharger,
+/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"uR" = (
+"auR" = (
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"uS" = (
+"auS" = (
/obj/machinery/computer/security/telescreen/entertainment{
icon_state = "frame";
pixel_x = 0;
@@ -12258,24 +12427,24 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"uT" = (
+"auT" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"uU" = (
+"auU" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"uV" = (
+"auV" = (
/obj/structure/railing{
dir = 4
},
/turf/simulated/open,
/area/rnd/staircase/thirdfloor)
-"uW" = (
+"auW" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -12294,7 +12463,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"uX" = (
+"auX" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger,
/obj/item/weapon/cell/high{
@@ -12322,31 +12491,31 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"uY" = (
+"auY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/rnd/research)
-"uZ" = (
+"auZ" = (
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"va" = (
+"ava" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vb" = (
+"avb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vc" = (
+"avc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -12358,7 +12527,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vd" = (
+"avd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -12370,7 +12539,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"ve" = (
+"ave" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12382,7 +12551,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vf" = (
+"avf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12398,7 +12567,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vg" = (
+"avg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12410,8 +12579,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vh" = (
+/area/tether/surfacebase/surface_three_hall)
+"avh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -12423,27 +12592,24 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner{
- dir = 4
+/area/tether/surfacebase/surface_three_hall)
+"avi" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
+ dir = 5
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vj" = (
+/area/tether/surfacebase/surface_three_hall)
+"avj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -12458,53 +12624,56 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/area/tether/surfacebase/surface_three_hall)
+"avk" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vl" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vm" = (
+/area/tether/surfacebase/surface_three_hall)
+"avl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"avm" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vn" = (
+/area/tether/surfacebase/surface_three_hall)
+"avn" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -12523,45 +12692,44 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vo" = (
+/area/tether/surfacebase/surface_three_hall)
+"avo" = (
/obj/structure/sign/directions/evac{
dir = 8
},
/turf/simulated/wall,
/area/crew_quarters/bar)
-"vp" = (
+"avp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"vq" = (
+"avq" = (
/obj/structure/table/marble,
/obj/effect/floor_decal/spline/plain{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"vr" = (
+"avr" = (
/obj/structure/table/marble,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"vs" = (
-/obj/structure/table/marble,
-/obj/machinery/camera/network/civilian{
- dir = 9
+"avs" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
},
-/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
},
-/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
- pixel_x = 3
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"vt" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/shuttle_pad)
+"avt" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/micro_laser,
/obj/item/weapon/stock_parts/micro_laser,
@@ -12577,7 +12745,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"vu" = (
+"avu" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -12588,27 +12756,27 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"vv" = (
+"avv" = (
/obj/machinery/r_n_d/destructive_analyzer,
/turf/simulated/floor/tiled/dark,
/area/rnd/research)
-"vw" = (
+"avw" = (
/obj/machinery/computer/rdconsole/core,
/turf/simulated/floor/tiled/dark,
/area/rnd/research)
-"vx" = (
+"avx" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"vy" = (
+"avy" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vz" = (
+"avz" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
@@ -12617,7 +12785,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vA" = (
+"avA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -12628,7 +12796,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vB" = (
+"avB" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -12637,20 +12805,20 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vC" = (
+"avC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vD" = (
+"avD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vE" = (
+"avE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -12662,14 +12830,14 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vF" = (
+/area/tether/surfacebase/surface_three_hall)
+"avF" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"vG" = (
+"avG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -12680,8 +12848,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vH" = (
+/area/tether/surfacebase/surface_three_hall)
+"avH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12695,16 +12863,16 @@
sortType = "Hydroponics"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vI" = (
+/area/tether/surfacebase/surface_three_hall)
+"avI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"avJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
@@ -12717,28 +12885,28 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"vK" = (
+/area/tether/surfacebase/surface_three_hall)
+"avK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
-"vL" = (
+"avL" = (
/obj/structure/table/bench/wooden,
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"vM" = (
+"avM" = (
/obj/structure/table/bench/wooden,
/obj/machinery/status_display{
pixel_y = 30
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"vN" = (
+"avN" = (
/obj/effect/floor_decal/corner/beige{
dir = 9
},
@@ -12748,11 +12916,11 @@
/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"vO" = (
+"avO" = (
/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"vP" = (
+"avP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -12761,7 +12929,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
-"vQ" = (
+"avQ" = (
/obj/structure/table/standard,
/obj/machinery/recharger{
pixel_y = 0
@@ -12774,7 +12942,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"vR" = (
+"avR" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -12786,7 +12954,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"vS" = (
+"avS" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/scanning_module{
pixel_x = 2;
@@ -12811,7 +12979,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"vT" = (
+"avT" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -12826,13 +12994,13 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"vU" = (
+"avU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research)
-"vV" = (
+"avV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -12842,7 +13010,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research)
-"vW" = (
+"avW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -12852,7 +13020,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"vX" = (
+"avX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -12867,30 +13035,30 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"vY" = (
+"avY" = (
/obj/structure/sign/deck/third,
/turf/simulated/shuttle/wall/voidcraft/green{
hard_corner = 1
},
/area/tether/elevator)
-"vZ" = (
+"avZ" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wa" = (
+"awa" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wb" = (
+"awb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"wc" = (
+"awc" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lightgrey/bordercorner,
@@ -12902,7 +13070,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wd" = (
+"awd" = (
/obj/machinery/librarycomp{
pixel_y = 0
},
@@ -12913,7 +13081,7 @@
/obj/structure/table/woodentable,
/turf/simulated/floor/carpet,
/area/library)
-"we" = (
+"awe" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -12928,7 +13096,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wf" = (
+"awf" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -12939,7 +13107,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wg" = (
+"awg" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -12954,7 +13122,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wh" = (
+"awh" = (
/obj/effect/floor_decal/borderfloorblack/corner,
/obj/structure/cable/green{
d1 = 4;
@@ -12969,24 +13137,58 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"wi" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/tether/surface)
-"wm" = (
+"awi" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/captain)
+"awj" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/captain)
+"awk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/captain)
+"awl" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/captain)
+"awm" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"wo" = (
+"awn" = (
+/turf/simulated/wall/r_wall,
+/area/bridge_hallway)
+"awo" = (
/obj/machinery/light_switch{
pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"wp" = (
+"awp" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -12996,8 +13198,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"wq" = (
+/area/tether/surfacebase/surface_three_hall)
+"awq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
@@ -13008,8 +13210,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"wr" = (
+/area/tether/surfacebase/surface_three_hall)
+"awr" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
@@ -13020,8 +13222,8 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"ws" = (
+/area/tether/surfacebase/surface_three_hall)
+"aws" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
@@ -13035,19 +13237,19 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"wt" = (
+/area/tether/surfacebase/surface_three_hall)
+"awt" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"wu" = (
+/area/tether/surfacebase/surface_three_hall)
+"awu" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"wv" = (
+"awv" = (
/obj/effect/floor_decal/corner/beige{
dir = 10
},
@@ -13059,14 +13261,14 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"ww" = (
+"aww" = (
/obj/effect/floor_decal/corner/beige{
dir = 10
},
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"wx" = (
+"awx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/vending/fitness,
/obj/effect/floor_decal/borderfloor{
@@ -13086,7 +13288,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"wy" = (
+"awy" = (
/obj/structure/table/reinforced,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13105,7 +13307,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/rnd/research)
-"wz" = (
+"awz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13125,7 +13327,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wA" = (
+"awA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -13152,7 +13354,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"wB" = (
+"awB" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -13168,7 +13370,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"wC" = (
+"awC" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -13184,7 +13386,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wD" = (
+"awD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 2;
@@ -13210,7 +13412,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"wE" = (
+"awE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13232,7 +13434,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"wF" = (
+"awF" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -13244,7 +13446,7 @@
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wG" = (
+"awG" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -13260,7 +13462,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wH" = (
+"awH" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -13276,10 +13478,25 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wJ" = (
+"awI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/command{
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/bridge_hallway)
+"awJ" = (
/turf/simulated/wall,
/area/maintenance/lower/atrium)
-"wK" = (
+"awK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13302,14 +13519,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"wL" = (
+"awL" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"wM" = (
+"awM" = (
/obj/machinery/light/small{
dir = 4
},
@@ -13318,7 +13535,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"wN" = (
+"awN" = (
/obj/structure/sign/directions/medical{
dir = 4;
pixel_y = 8
@@ -13337,7 +13554,7 @@
},
/turf/simulated/wall,
/area/maintenance/lower/atrium)
-"wO" = (
+"awO" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -13352,23 +13569,23 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"wP" = (
+"awP" = (
/turf/simulated/wall,
/area/hydroponics)
-"wQ" = (
+"awQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/hydroponics)
-"wR" = (
+"awR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/hydroponics)
-"wS" = (
+"awS" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -13385,13 +13602,13 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wT" = (
+"awT" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wU" = (
+"awU" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -13413,7 +13630,7 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"wV" = (
+"awV" = (
/obj/structure/table/bench/wooden,
/obj/machinery/light{
dir = 8;
@@ -13422,7 +13639,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"wW" = (
+"awW" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
@@ -13446,7 +13663,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"wX" = (
+"awX" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -13467,17 +13684,17 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"wY" = (
+"awY" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/turf/simulated/floor/tiled/dark,
/area/rnd/research)
-"wZ" = (
+"awZ" = (
/obj/machinery/hologram/holopad,
/obj/machinery/r_n_d/protolathe,
/turf/simulated/floor/tiled/dark,
/area/rnd/research)
-"xa" = (
+"axa" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -13486,7 +13703,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"xb" = (
+"axb" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -13498,7 +13715,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xc" = (
+"axc" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13516,14 +13733,14 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xd" = (
+"axd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xe" = (
+"axe" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -13541,23 +13758,34 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xg" = (
+"axf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Private Restroom";
+ req_access = newlist();
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/captain)
+"axg" = (
/turf/simulated/wall,
/area/library)
-"xh" = (
+"axh" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"xi" = (
+"axi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/library)
-"xj" = (
+"axj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -13569,11 +13797,11 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"xk" = (
+"axk" = (
/obj/structure/sign/department/biblio,
/turf/simulated/wall,
/area/library)
-"xl" = (
+"axl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -13586,7 +13814,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"xm" = (
+"axm" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -13599,7 +13827,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"xn" = (
+"axn" = (
/obj/machinery/floodlight,
/obj/machinery/alarm{
dir = 8;
@@ -13615,7 +13843,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"xo" = (
+"axo" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -13625,7 +13853,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"xp" = (
+"axp" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -13636,7 +13864,7 @@
/obj/machinery/smartfridge,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"xq" = (
+"axq" = (
/obj/machinery/honey_extractor,
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -13646,7 +13874,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"xr" = (
+"axr" = (
/obj/machinery/smartfridge/drying_rack,
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -13656,7 +13884,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"xs" = (
+"axs" = (
/obj/item/bee_pack,
/obj/item/honey_frame,
/obj/item/honey_frame,
@@ -13678,7 +13906,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"xt" = (
+"axt" = (
/obj/machinery/vending/hydronutrients,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -13688,13 +13916,13 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"xu" = (
+"axu" = (
/obj/structure/sign/directions/evac{
dir = 1
},
/turf/simulated/wall,
/area/hydroponics)
-"xv" = (
+"axv" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -13709,7 +13937,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xw" = (
+"axw" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -13729,11 +13957,11 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xx" = (
+"axx" = (
/obj/structure/flora/pottedplant,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"xy" = (
+"axy" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -13755,7 +13983,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xz" = (
+"axz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -13765,25 +13993,19 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"xA" = (
+"axA" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/research)
-"xB" = (
-/obj/machinery/camera/network/research{
- dir = 8
+"axB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/research)
-"xC" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/shuttle_pad)
+"axC" = (
/obj/structure/table/standard,
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil{
@@ -13806,7 +14028,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"xD" = (
+"axD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -13831,7 +14053,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"xE" = (
+"axE" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
@@ -13840,14 +14062,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"xF" = (
+"axF" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1"
},
/turf/simulated/open,
/area/rnd/staircase/thirdfloor)
-"xG" = (
+"axG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
dir = 8;
@@ -13869,7 +14091,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"xH" = (
+"axH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13897,7 +14119,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"xI" = (
+"axI" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -13910,7 +14132,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"xJ" = (
+"axJ" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = 2;
@@ -13931,7 +14153,7 @@
/obj/effect/floor_decal/corner/mauve/bordercorner2,
/turf/simulated/floor/tiled,
/area/rnd/research)
-"xK" = (
+"axK" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
@@ -13947,7 +14169,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xL" = (
+"axL" = (
/obj/structure/table/standard,
/obj/structure/reagent_dispensers/acid{
density = 0;
@@ -13965,7 +14187,7 @@
/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled,
/area/rnd/research)
-"xM" = (
+"axM" = (
/obj/structure/table/standard,
/obj/item/weapon/disk/tech_disk{
pixel_x = 0;
@@ -13991,7 +14213,7 @@
/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled,
/area/rnd/research)
-"xN" = (
+"axN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -14004,45 +14226,29 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"xO" = (
+"axO" = (
/obj/structure/railing,
/turf/simulated/open,
/area/rnd/staircase/thirdfloor)
-"xP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/mauve/border{
+"axP" = (
+/obj/machinery/holoplant,
+/obj/effect/floor_decal/borderfloorblack{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
dir = 5
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
/turf/simulated/floor/tiled,
-/area/rnd/research/researchdivision)
-"xQ" = (
+/area/rnd/outpost/xenobiology/outpost_hallway)
+"axQ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xR" = (
+"axR" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -14058,7 +14264,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"xS" = (
+"axS" = (
/obj/machinery/door/airlock/multi_tile/glass{
name = "Library"
},
@@ -14072,7 +14278,7 @@
dir = 8
},
/area/library)
-"xT" = (
+"axT" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 4
@@ -14082,7 +14288,7 @@
dir = 4
},
/area/library)
-"xU" = (
+"axU" = (
/obj/structure/bookcase{
desc = "There appears to be a shrine to WGW at the back...";
name = "Forbidden Knowledge"
@@ -14091,7 +14297,7 @@
/obj/item/weapon/book/manual/nuclear,
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"xV" = (
+"axV" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -14103,7 +14309,7 @@
/obj/item/weapon/pen/invisible,
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"xW" = (
+"axW" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -14118,7 +14324,7 @@
},
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"xX" = (
+"axX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
icon_state = "1-8"
@@ -14133,7 +14339,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"xY" = (
+"axY" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -14157,20 +14363,20 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"xZ" = (
+"axZ" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"ya" = (
+"aya" = (
/turf/simulated/floor/tiled,
/area/hydroponics)
-"yb" = (
+"ayb" = (
/obj/effect/landmark/start{
name = "Gardener"
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"yc" = (
+"ayc" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -14179,14 +14385,14 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"yd" = (
+"ayd" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"ye" = (
+"aye" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -14209,7 +14415,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"yf" = (
+"ayf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
@@ -14217,27 +14423,27 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yg" = (
+"ayg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yh" = (
+"ayh" = (
/obj/structure/table/bench/wooden,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yi" = (
+"ayi" = (
/obj/structure/disposalpipe/sortjunction{
name = "Research";
sortType = "Research"
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"yj" = (
+"ayj" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -14246,14 +14452,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"yk" = (
+"ayk" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 4
},
/turf/simulated/open,
/area/rnd/staircase/thirdfloor)
-"yl" = (
+"ayl" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -14278,19 +14484,19 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"ym" = (
+"aym" = (
/obj/machinery/autolathe{
hacked = 1
},
/turf/simulated/floor/holofloor/tiled/dark,
/area/rnd/research)
-"yn" = (
+"ayn" = (
/obj/structure/sign/directions/evac{
dir = 1
},
/turf/simulated/wall,
/area/rnd/research)
-"yo" = (
+"ayo" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_research{
name = "Research and Development";
@@ -14298,7 +14504,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"yp" = (
+"ayp" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/firstaid/surgery,
/obj/item/weapon/paper{
@@ -14310,13 +14516,13 @@
/obj/item/device/robotanalyzer,
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"yq" = (
+"ayq" = (
/obj/machinery/optable{
name = "Robotics Operating Table"
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"yr" = (
+"ayr" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
icon_state = "extinguisher_closed";
@@ -14344,7 +14550,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"ys" = (
+"ays" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
@@ -14353,7 +14559,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yt" = (
+"ayt" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -14378,7 +14584,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yu" = (
+"ayu" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 8;
@@ -14403,7 +14609,7 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yv" = (
+"ayv" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -14417,47 +14623,41 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/network/tether{
- dir = 9
+"ayw" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
-"yy" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_main)
+"ayx" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/hop)
+"ayy" = (
/obj/structure/table/woodentable,
/obj/item/device/camera_film,
/obj/item/device/camera_film,
/turf/simulated/floor/carpet,
/area/library)
-"yz" = (
+"ayz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/library)
-"yA" = (
+"ayA" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/library)
-"yB" = (
+"ayB" = (
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"yC" = (
+"ayC" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -14470,7 +14670,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"yD" = (
+"ayD" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/green{
@@ -14481,7 +14681,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"yE" = (
+"ayE" = (
/obj/effect/floor_decal/corner/green{
dir = 5
},
@@ -14490,7 +14690,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"yF" = (
+"ayF" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/effect/floor_decal/corner/green{
dir = 10
@@ -14500,10 +14700,10 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"yG" = (
+"ayG" = (
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"yH" = (
+"ayH" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -14528,7 +14728,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yI" = (
+"ayI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -14536,20 +14736,20 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yJ" = (
+"ayJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yK" = (
+"ayK" = (
/obj/structure/table/bench/wooden,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yL" = (
+"ayL" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -14563,7 +14763,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yM" = (
+"ayM" = (
/obj/structure/table/woodentable,
/obj/machinery/computer/security/telescreen/entertainment{
icon_state = "frame";
@@ -14572,7 +14772,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yN" = (
+"ayN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -14581,7 +14781,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"yO" = (
+"ayO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -14604,7 +14804,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yP" = (
+"ayP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -14613,7 +14813,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"yQ" = (
+"ayQ" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -14632,7 +14832,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yR" = (
+"ayR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -14656,7 +14856,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yS" = (
+"ayS" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -14674,13 +14874,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yT" = (
+"ayT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"yU" = (
+"ayU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -14697,7 +14897,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yV" = (
+"ayV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -14719,7 +14919,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yW" = (
+"ayW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -14740,7 +14940,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"yX" = (
+"ayX" = (
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
@@ -14771,7 +14971,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"yY" = (
+"ayY" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -14789,7 +14989,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"yZ" = (
+"ayZ" = (
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
@@ -14811,7 +15011,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"za" = (
+"aza" = (
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
@@ -14835,7 +15035,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"zb" = (
+"azb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -14853,7 +15053,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"zc" = (
+"azc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -14862,7 +15062,7 @@
},
/turf/simulated/floor/plating,
/area/rnd/research)
-"zd" = (
+"azd" = (
/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloor{
dir = 8;
@@ -14883,7 +15083,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research)
-"ze" = (
+"aze" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -14894,7 +15094,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"zf" = (
+"azf" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/mauve/bordercorner,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -14905,7 +15105,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"zg" = (
+"azg" = (
/obj/machinery/newscaster{
pixel_x = 25
},
@@ -14924,7 +15124,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"zh" = (
+"azh" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -14935,7 +15135,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"zi" = (
+"azi" = (
/obj/structure/bed/chair/comfy/brown,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -14954,7 +15154,7 @@
},
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"zj" = (
+"azj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -14965,7 +15165,7 @@
},
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"zk" = (
+"azk" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
@@ -14980,14 +15180,14 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"zl" = (
+"azl" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"zm" = (
+"azm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -15001,7 +15201,7 @@
},
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"zn" = (
+"azn" = (
/obj/random/tech_supply,
/obj/structure/table/steel,
/obj/random/maintenance/engineering,
@@ -15014,10 +15214,10 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"zo" = (
+"azo" = (
/turf/simulated/wall,
/area/rnd/research/researchdivision)
-"zp" = (
+"azp" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -15031,7 +15231,7 @@
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"zq" = (
+"azq" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
/obj/effect/floor_decal/borderfloor/corner2{
@@ -15048,24 +15248,21 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"zr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 8
- },
-/obj/machinery/camera/network/civilian{
+"azr" = (
+/obj/structure/bed/chair/wood{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"zs" = (
+/area/rnd/outpost/xenobiology/outpost_breakroom)
+"azs" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -15080,41 +15277,22 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"zt" = (
+"azt" = (
/obj/structure/sign/botany,
/turf/simulated/wall,
/area/hydroponics)
-"zu" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/lime/bordercorner2{
- dir = 10
- },
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
-"zv" = (
+"azu" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/tether/surface)
+"azv" = (
/obj/structure/sign/double/barsign{
dir = 8
},
/turf/simulated/wall,
/area/crew_quarters/bar)
-"zw" = (
+"azw" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15130,7 +15308,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"zx" = (
+"azx" = (
/obj/structure/table/bench/wooden,
/obj/machinery/light{
dir = 4;
@@ -15143,7 +15321,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"zy" = (
+"azy" = (
/obj/structure/closet/firecloset,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -15164,7 +15342,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"zz" = (
+"azz" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -15192,7 +15370,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"zA" = (
+"azA" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
/obj/machinery/light,
@@ -15207,10 +15385,10 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"zB" = (
+"azB" = (
/turf/simulated/wall,
/area/rnd/research_foyer)
-"zC" = (
+"azC" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -15235,13 +15413,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"zD" = (
+"azD" = (
/turf/simulated/wall,
/area/assembly/chargebay)
-"zE" = (
+"azE" = (
/turf/simulated/wall,
/area/assembly/robotics)
-"zF" = (
+"azF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -15251,14 +15429,14 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"zG" = (
+"azG" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_research{
name = "Research Staircase"
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"zH" = (
+"azH" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -15267,7 +15445,7 @@
},
/turf/simulated/floor/plating,
/area/assembly/robotics)
-"zI" = (
+"azI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15282,7 +15460,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"zJ" = (
+"azJ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15296,7 +15474,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"zK" = (
+"azK" = (
/obj/structure/cable/green{
icon_state = "0-8"
},
@@ -15319,10 +15497,10 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"zL" = (
+"azL" = (
/turf/simulated/wall/r_wall,
/area/rnd/research/testingrange)
-"zM" = (
+"azM" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -15349,14 +15527,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"zN" = (
+"azN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"zO" = (
+"azO" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -15379,7 +15557,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"zP" = (
+"azP" = (
/obj/machinery/door/morgue{
dir = 2;
name = "Private Study";
@@ -15399,7 +15577,7 @@
},
/turf/simulated/floor/carpet,
/area/library)
-"zQ" = (
+"azQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -15413,7 +15591,7 @@
},
/turf/simulated/floor/carpet,
/area/library)
-"zR" = (
+"azR" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -15436,7 +15614,7 @@
},
/turf/simulated/floor/carpet,
/area/library)
-"zS" = (
+"azS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -15450,32 +15628,25 @@
},
/turf/simulated/floor/wood,
/area/library)
-"zT" = (
+"azT" = (
/turf/simulated/floor/wood,
/area/library)
-"zU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+"azU" = (
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -28
},
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
+/turf/simulated/floor/tiled,
+/area/rnd/outpost/xenobiology/outpost_breakroom)
+"azV" = (
+/obj/machinery/libraryscanner,
+/obj/machinery/camera/network/civilian{
dir = 9
},
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled,
-/area/rnd/research_foyer)
-"zV" = (
-/obj/machinery/libraryscanner,
/turf/simulated/floor/wood,
/area/library)
-"zW" = (
+"azW" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -15483,7 +15654,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"zX" = (
+"azX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -15506,7 +15677,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"zY" = (
+"azY" = (
/obj/structure/cable{
icon_state = "0-8"
},
@@ -15519,7 +15690,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"zZ" = (
+"azZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -15531,11 +15702,11 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Aa" = (
+"aAa" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Ab" = (
+"aAb" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
@@ -15547,7 +15718,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Ac" = (
+"aAc" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -15561,7 +15732,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/hydroponics)
-"Ad" = (
+"aAd" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15575,7 +15746,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ae" = (
+"aAe" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15583,7 +15754,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Af" = (
+"aAf" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -15606,9 +15777,12 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ag" = (
+"aAg" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -15628,7 +15802,7 @@
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"Ah" = (
+"aAh" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -15641,7 +15815,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Ai" = (
+"aAi" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -15654,18 +15828,23 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Aj" = (
+"aAj" = (
/obj/machinery/light/flamp,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Ak" = (
-/obj/machinery/camera/network/civilian{
- dir = 9
+"aAk" = (
+/obj/structure/flora/pottedplant/unusual,
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
},
-/obj/structure/flora/pottedplant,
/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"Al" = (
+/area/rnd/outpost/xenobiology/outpost_office)
+"aAl" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -15675,7 +15854,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Am" = (
+"aAm" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -15684,7 +15863,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"An" = (
+"aAn" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15701,14 +15880,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Ao" = (
+"aAo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Ap" = (
+"aAp" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -15730,7 +15909,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Aq" = (
+"aAq" = (
/obj/structure/bed/chair,
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -15748,7 +15927,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ar" = (
+"aAr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
@@ -15758,21 +15937,17 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"As" = (
+"aAs" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"At" = (
-/obj/machinery/camera/network/tether{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
-"Au" = (
+"aAt" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/paperplane,
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/wood,
+/area/rnd/outpost/xenobiology/outpost_office)
+"aAu" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -15793,7 +15968,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Av" = (
+"aAv" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
@@ -15809,7 +15984,7 @@
/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Aw" = (
+"aAw" = (
/obj/structure/table/woodentable,
/obj/item/device/taperecorder{
pixel_y = 0
@@ -15828,7 +16003,7 @@
/obj/item/device/tape,
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"Ax" = (
+"aAx" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -15845,7 +16020,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ay" = (
+"aAy" = (
/obj/structure/table/woodentable,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -15855,10 +16030,10 @@
/obj/machinery/light/small,
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"Az" = (
+"aAz" = (
/turf/simulated/floor/carpet,
/area/library)
-"AA" = (
+"aAA" = (
/obj/structure/table/woodentable,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
@@ -15866,12 +16041,12 @@
},
/turf/simulated/floor/carpet,
/area/library)
-"AB" = (
+"aAB" = (
/turf/simulated/wall,
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"AC" = (
+"aAC" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -15891,7 +16066,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"AD" = (
+"aAD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -15901,7 +16076,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"AE" = (
+"aAE" = (
/obj/machinery/door/airlock/maintenance/common{
name = "Hydroponics Maintenance";
req_access = list(35)
@@ -15926,7 +16101,7 @@
},
/turf/simulated/floor/plating,
/area/hydroponics)
-"AF" = (
+"aAF" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -15946,7 +16121,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"AG" = (
+"aAG" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/structure/cable/green{
d1 = 4;
@@ -15968,7 +16143,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"AH" = (
+"aAH" = (
/obj/effect/floor_decal/corner/green{
dir = 5
},
@@ -15988,7 +16163,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"AI" = (
+"aAI" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/structure/cable/green{
d1 = 4;
@@ -16009,7 +16184,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"AJ" = (
+"aAJ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16023,7 +16198,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"AK" = (
+"aAK" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -16049,7 +16224,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"AL" = (
+"aAL" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -16080,7 +16255,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"AM" = (
+"aAM" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -16094,23 +16269,19 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"AN" = (
+"aAN" = (
/turf/simulated/open,
/area/hallway/lower/third_south)
-"AO" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/obj/structure/bed/chair/wood{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"AP" = (
+"aAO" = (
+/obj/machinery/recharge_station,
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled,
+/area/rnd/outpost/xenobiology/outpost_breakroom)
+"aAP" = (
/obj/structure/bed/chair/wood,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"AQ" = (
+"aAQ" = (
/obj/machinery/newscaster{
pixel_x = 0;
pixel_y = 30
@@ -16118,11 +16289,14 @@
/obj/structure/table/bench/wooden,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"AR" = (
+"aAR" = (
/obj/machinery/computer/arcade,
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"AS" = (
+"aAS" = (
/obj/machinery/light{
dir = 1
},
@@ -16140,7 +16314,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"AT" = (
+"aAT" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -16156,7 +16330,7 @@
/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"AU" = (
+"aAU" = (
/obj/structure/bed/chair,
/obj/machinery/firealarm{
dir = 2;
@@ -16174,7 +16348,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"AV" = (
+"aAV" = (
/obj/structure/closet{
name = "materials"
},
@@ -16203,7 +16377,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"AW" = (
+"aAW" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
icon_state = "borderfloor";
@@ -16224,7 +16398,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"AX" = (
+"aAX" = (
/obj/structure/closet{
name = "mechanical equipment"
},
@@ -16267,7 +16441,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"AY" = (
+"aAY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
icon_state = "borderfloor";
@@ -16292,7 +16466,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"AZ" = (
+"aAZ" = (
/obj/structure/closet{
name = "robotics parts"
},
@@ -16363,20 +16537,26 @@
/obj/effect/floor_decal/corner/mauve/bordercorner2{
dir = 5
},
+/obj/machinery/camera/network/research,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ba" = (
-/obj/structure/table/reinforced,
-/obj/machinery/camera/network/research,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
+"aBa" = (
+/obj/structure/table/standard,
+/obj/item/device/lightreplacer,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/apc;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 9
+/obj/structure/cable/green{
+ icon_state = "0-4"
},
-/turf/simulated/floor/tiled,
-/area/rnd/research/testingrange)
-"Bb" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/outpost/xenobiology/outpost_storage)
+"aBb" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger/wallcharger{
pixel_x = 4;
@@ -16392,7 +16572,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Bc" = (
+"aBc" = (
/obj/machinery/recharger/wallcharger{
pixel_x = 4;
pixel_y = 28
@@ -16413,7 +16593,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Bd" = (
+"aBd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -16421,7 +16601,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Be" = (
+"aBe" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -16441,33 +16621,12 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"Bf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/research,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/turf/simulated/floor/tiled,
-/area/rnd/research/researchdivision)
-"Bg" = (
+"aBf" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/camera/network/research/xenobio,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_stairs)
+"aBg" = (
/obj/structure/cable/green{
icon_state = "0-4"
},
@@ -16492,7 +16651,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"Bh" = (
+"aBh" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16503,7 +16662,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"Bi" = (
+"aBi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16522,7 +16681,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Bj" = (
+"aBj" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -16535,7 +16694,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"Bk" = (
+"aBk" = (
/obj/structure/extinguisher_cabinet{
dir = 8;
icon_state = "extinguisher_closed";
@@ -16556,23 +16715,40 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Bl" = (
+"aBl" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"Bm" = (
+"aBm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"Bn" = (
+"aBn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/assembly/robotics)
-"Bp" = (
+"aBo" = (
+/obj/machinery/door/airlock/command{
+ id_tag = "captaindoor";
+ name = "Colony Director's Office";
+ req_access = list(20)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aBp" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16594,59 +16770,43 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Bq" = (
+"aBq" = (
/obj/structure/table/woodentable,
/obj/item/device/taperecorder,
/turf/simulated/floor/carpet,
/area/library)
-"Br" = (
+"aBr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/library)
-"Bs" = (
+"aBs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/wood,
/area/library)
-"Bt" = (
+"aBt" = (
/obj/structure/bed/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/wood,
/area/library)
-"Bu" = (
-/obj/structure/table/glass,
-/obj/machinery/recharger{
- pixel_y = 0
+"aBu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/mauve/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/mauve/bordercorner2,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/thirdfloor)
-"Bv" = (
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_autopsy)
+"aBv" = (
/obj/structure/bed/chair/office/dark,
/turf/simulated/floor/wood,
/area/library)
-"Bw" = (
+"aBw" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16667,7 +16827,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Bx" = (
+"aBx" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -16686,20 +16846,20 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"By" = (
+"aBy" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Bz" = (
+"aBz" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"BA" = (
+"aBA" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
@@ -16708,7 +16868,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/hydroponics)
-"BB" = (
+"aBB" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
@@ -16717,16 +16877,16 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"BC" = (
+"aBC" = (
/obj/structure/table/gamblingtable,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"BD" = (
+"aBD" = (
/obj/structure/table/gamblingtable,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"BE" = (
+"aBE" = (
/obj/structure/bed/chair/wood{
dir = 8
},
@@ -16737,7 +16897,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"BF" = (
+"aBF" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -16751,11 +16911,11 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"BG" = (
+"aBG" = (
/obj/item/weapon/stool/padded,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"BH" = (
+"aBH" = (
/obj/structure/table/glass,
/obj/machinery/recharger{
pixel_y = 0
@@ -16773,7 +16933,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"BI" = (
+"aBI" = (
/obj/structure/table/reinforced,
/obj/structure/cable/green{
d2 = 8;
@@ -16795,19 +16955,21 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"BJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/machinery/camera/network/research,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+"aBJ" = (
+/obj/machinery/shower{
+ dir = 4;
+ icon_state = "shower";
+ pixel_x = 5;
+ pixel_y = 0
},
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 5
+/obj/structure/curtain/open/shower,
+/obj/machinery/camera/network/research{
+ dir = 1;
+ icon_state = "camera"
},
-/turf/simulated/floor/tiled,
-/area/rnd/research/testingrange)
-"BK" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_south_airlock)
+"aBK" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/borderfloorblack,
/obj/machinery/door/airlock/glass_research{
@@ -16839,35 +17001,22 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"BL" = (
+"aBL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"BM" = (
+"aBM" = (
+/obj/machinery/hologram/holopad,
/obj/machinery/camera/network/research{
+ icon_state = "camera";
dir = 8
},
-/obj/structure/sign/department/robo{
- pixel_x = 32
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/rnd/research/researchdivision)
-"BN" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_first_aid)
+"aBN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16878,13 +17027,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"BO" = (
+"aBO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"BP" = (
+"aBP" = (
/obj/structure/lattice,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -16908,16 +17057,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/open,
+/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"BQ" = (
+"aBQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"BR" = (
+"aBR" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
@@ -16932,7 +17081,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"BS" = (
+"aBS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16955,7 +17104,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research_foyer)
-"BT" = (
+"aBT" = (
/obj/structure/table/wooden_reinforced,
/obj/machinery/ai_status_display{
pixel_y = 30
@@ -16967,7 +17116,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"BU" = (
+"aBU" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
dir = 8;
@@ -16983,7 +17132,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"BV" = (
+"aBV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -16992,10 +17141,10 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"BW" = (
+"aBW" = (
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"BX" = (
+"aBX" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -17015,7 +17164,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"BY" = (
+"aBY" = (
/obj/structure/sign/department/sci{
pixel_x = -32;
pixel_y = 0
@@ -17034,7 +17183,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"BZ" = (
+"aBZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 2;
@@ -17049,12 +17198,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Ca" = (
+"aCa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Cb" = (
+"aCb" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper{
desc = "";
@@ -17079,13 +17228,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Cc" = (
+"aCc" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Cd" = (
+"aCd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17116,7 +17265,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"Ce" = (
+"aCe" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -17137,12 +17286,15 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Cf" = (
+"aCf" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Cg" = (
+"aCg" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -17163,7 +17315,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Ch" = (
+"aCh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -17179,7 +17331,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"Ci" = (
+"aCi" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -17195,7 +17347,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Cj" = (
+"aCj" = (
/obj/machinery/biogenerator,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -17211,7 +17363,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Ck" = (
+"aCk" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -17235,19 +17387,19 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Cl" = (
+"aCl" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Cm" = (
+"aCm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Cn" = (
+"aCn" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -17268,12 +17420,12 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Co" = (
+"aCo" = (
/obj/structure/table/gamblingtable,
/obj/item/weapon/deck/cards,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Cp" = (
+"aCp" = (
/obj/structure/bed/chair/wood{
dir = 8
},
@@ -17284,7 +17436,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Cq" = (
+"aCq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -17292,7 +17444,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Cr" = (
+"aCr" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -17303,7 +17455,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Cs" = (
+"aCs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -17312,7 +17464,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Ct" = (
+"aCt" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -17324,12 +17476,12 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Cu" = (
+"aCu" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Cv" = (
+"aCv" = (
/obj/machinery/pros_fabricator{
dir = 1
},
@@ -17342,7 +17494,7 @@
/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Cw" = (
+"aCw" = (
/obj/machinery/autolathe{
hacked = 1
},
@@ -17364,7 +17516,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Cx" = (
+"aCx" = (
/obj/structure/table/reinforced,
/obj/machinery/light_switch{
pixel_x = -25
@@ -17379,11 +17531,11 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Cy" = (
+"aCy" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Cz" = (
+"aCz" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -17401,7 +17553,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"CA" = (
+"aCA" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -17416,18 +17568,18 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"CB" = (
+"aCB" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"CC" = (
+"aCC" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"CD" = (
+"aCD" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -17441,7 +17593,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"CE" = (
+"aCE" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -17454,16 +17606,19 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
},
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"CF" = (
+"aCF" = (
/obj/machinery/light/small{
dir = 4;
pixel_y = 0
},
/turf/simulated/floor/wood,
/area/library)
-"CG" = (
+"aCG" = (
/obj/machinery/bookbinder{
pixel_y = 0
},
@@ -17473,13 +17628,13 @@
},
/turf/simulated/floor/wood,
/area/library)
-"CH" = (
+"aCH" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
/turf/simulated/floor/wood,
/area/library)
-"CI" = (
+"aCI" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_research{
name = "Weapons Testing Range";
@@ -17487,11 +17642,11 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"CJ" = (
+"aCJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/library)
-"CK" = (
+"aCK" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
@@ -17508,7 +17663,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"CL" = (
+"aCL" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Surface Civilian Substation Bypass"
},
@@ -17516,7 +17671,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"CM" = (
+"aCM" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -17533,7 +17688,7 @@
},
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
-"CN" = (
+"aCN" = (
/obj/structure/noticeboard{
pixel_y = -26
},
@@ -17552,10 +17707,10 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"CO" = (
+"aCO" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"CP" = (
+"aCP" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
icon_state = "1-8"
@@ -17574,7 +17729,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"CQ" = (
+"aCQ" = (
/obj/structure/cable{
icon_state = "0-8"
},
@@ -17595,7 +17750,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"CR" = (
+"aCR" = (
/obj/machinery/seed_extractor,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -17605,7 +17760,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"CS" = (
+"aCS" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -17624,13 +17779,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"CT" = (
+"aCT" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"CU" = (
+"aCU" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -17650,7 +17805,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"CV" = (
+"aCV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -17668,12 +17823,12 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"CW" = (
+"aCW" = (
/obj/structure/table/gamblingtable,
/obj/item/weapon/storage/pill_bottle/dice_nerd,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"CX" = (
+"aCX" = (
/obj/structure/bed/chair/wood{
dir = 8
},
@@ -17682,7 +17837,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"CY" = (
+"aCY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -17691,7 +17846,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"CZ" = (
+"aCZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -17703,11 +17858,11 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"Da" = (
+"aDa" = (
/obj/machinery/portable_atmospherics/hydroponics/soil,
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
-"Db" = (
+"aDb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -17719,27 +17874,27 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"Dc" = (
+"aDc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"Dd" = (
+"aDd" = (
/obj/machinery/light{
dir = 1
},
/obj/structure/table/bench/wooden,
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
-"De" = (
+"aDe" = (
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
-"Df" = (
+"aDf" = (
/obj/structure/table/bench/wooden,
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
-"Dg" = (
+"aDg" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -17749,7 +17904,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dh" = (
+"aDh" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -17758,15 +17913,16 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Di" = (
+"aDi" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/machinery/camera/network/civilian,
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
-"Dj" = (
+"aDj" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -17775,7 +17931,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dk" = (
+"aDk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -17794,7 +17950,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dl" = (
+"aDl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17814,7 +17970,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dm" = (
+"aDm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -17826,7 +17982,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dn" = (
+"aDn" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -17835,23 +17991,17 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Do" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+"aDo" = (
+/obj/structure/table/standard,
+/obj/item/device/slime_scanner,
+/obj/item/device/slime_scanner,
+/obj/item/device/multitool,
+/obj/machinery/camera/network/research{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 5
- },
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_three)
-"Dp" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/outpost/xenobiology/outpost_storage)
+"aDp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -17870,7 +18020,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_b)
-"Dq" = (
+"aDq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -17879,7 +18029,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"Dr" = (
+"aDr" = (
/obj/structure/table/woodentable,
/obj/random/maintenance/clean,
/obj/effect/floor_decal/borderfloor/corner{
@@ -17897,10 +18047,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Ds" = (
+"aDs" = (
/turf/simulated/open,
/area/tether/surfacebase/public_garden_three)
-"Dt" = (
+"aDt" = (
/obj/structure/table/woodentable,
/obj/item/weapon/material/minihoe,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -17917,11 +18067,11 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Du" = (
+"aDu" = (
/obj/structure/table/bench/wooden,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dv" = (
+"aDv" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
@@ -17931,7 +18081,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dw" = (
+"aDw" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -17950,7 +18100,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dx" = (
+"aDx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -17970,7 +18120,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"Dy" = (
+"aDy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -17995,7 +18145,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/public_garden_three)
-"Dz" = (
+"aDz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -18004,7 +18154,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"DA" = (
+"aDA" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -18013,7 +18163,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DB" = (
+"aDB" = (
/obj/structure/table/woodentable,
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -18030,7 +18180,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DC" = (
+"aDC" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -18050,7 +18200,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DD" = (
+"aDD" = (
/obj/structure/table/bench/wooden,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18060,7 +18210,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DE" = (
+"aDE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18071,7 +18221,7 @@
/obj/effect/floor_decal/corner/lime/bordercorner,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DF" = (
+"aDF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18083,7 +18233,7 @@
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DG" = (
+"aDG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -18099,7 +18249,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DH" = (
+"aDH" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/zpipe/down/supply{
@@ -18114,7 +18264,7 @@
},
/turf/simulated/open,
/area/tether/surfacebase/public_garden_three)
-"DI" = (
+"aDI" = (
/obj/effect/floor_decal/techfloor/corner{
dir = 1
},
@@ -18126,7 +18276,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"DJ" = (
+"aDJ" = (
/obj/machinery/hologram/holopad,
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -18136,7 +18286,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DK" = (
+"aDK" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
@@ -18151,7 +18301,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DL" = (
+"aDL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -18168,7 +18318,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DM" = (
+"aDM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -18176,12 +18326,12 @@
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DN" = (
+"aDN" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DO" = (
+"aDO" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 25;
@@ -18193,16 +18343,19 @@
/obj/effect/floor_decal/corner/lime/border{
dir = 6
},
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DP" = (
+"aDP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"DQ" = (
+"aDQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -18212,7 +18365,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"DR" = (
+"aDR" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -18224,7 +18377,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"DS" = (
+"aDS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -18234,16 +18387,21 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_three)
-"DT" = (
+"aDT" = (
/obj/machinery/light,
/obj/structure/table/bench/wooden,
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
-"DU" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"DV" = (
+"aDU" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/outpost/xenobiology/outpost_breakroom)
+"aDV" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -18260,8 +18418,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"DW" = (
+/area/tether/surfacebase/surface_three_hall)
+"aDW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18274,8 +18432,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"DX" = (
+/area/tether/surfacebase/surface_three_hall)
+"aDX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -18294,7 +18452,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"DY" = (
+"aDY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -18308,7 +18466,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"DZ" = (
+"aDZ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18316,86 +18474,112 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"Eb" = (
-/obj/structure/railing{
+"aEa" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aEb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/railing,
-/turf/simulated/open,
-/area/tether/surfacebase/atrium_three)
-"Ec" = (
-/obj/structure/bed/chair/wood,
-/obj/structure/window/basic{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/basic{
- dir = 1
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aEc" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = list(57)
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ed" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aEd" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ee" = (
-/obj/structure/table/woodentable,
-/obj/structure/window/basic{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/blue/border{
dir = 8
},
-/obj/item/weapon/flame/candle,
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ef" = (
-/obj/machinery/camera/network/outside,
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"Eg" = (
-/obj/structure/bed/chair/wood{
- dir = 1
+/area/tether/surfacebase/surface_three_hall)
+"aEe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27;
+ pixel_y = 0
},
-/obj/structure/window/basic{
- dir = 8
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/pen,
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aEf" = (
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
+ dir = 5
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_main)
+"aEg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Eh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aEh" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/effect/landmark/start{
name = "Chef"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"Ei" = (
+"aEi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -18404,24 +18588,33 @@
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"Ej" = (
-/obj/structure/bed/chair/wood,
-/obj/structure/window/basic{
+"aEj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
dir = 8
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ek" = (
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aEk" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"El" = (
+"aEl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18436,12 +18629,12 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Em" = (
+"aEm" = (
/obj/structure/table/bench/wooden,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"En" = (
+"aEn" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -18449,23 +18642,17 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Eo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"aEo" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
},
+/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ep" = (
+/area/tether/surfacebase/surface_three_hall)
+"aEp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -18476,8 +18663,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Eq" = (
+/area/tether/surfacebase/surface_three_hall)
+"aEq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -18489,13 +18676,13 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Er" = (
+/area/tether/surfacebase/surface_three_hall)
+"aEr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Es" = (
+"aEs" = (
/obj/machinery/door/airlock/research{
name = "Xenobiology Lab";
req_access = list();
@@ -18504,7 +18691,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"Et" = (
+"aEt" = (
/obj/machinery/door/blast/regular{
density = 0;
dir = 8;
@@ -18519,7 +18706,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Eu" = (
+"aEu" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -18531,21 +18718,38 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Ew" = (
-/obj/machinery/camera/network/tether{
- dir = 1
+"aEv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aEw" = (
+/obj/structure/flora/pottedplant/subterranean,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ex" = (
+/area/rnd/outpost/xenobiology/outpost_hallway)
+"aEx" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -18556,8 +18760,8 @@
},
/obj/machinery/light,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ey" = (
+/area/tether/surfacebase/surface_three_hall)
+"aEy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -18578,7 +18782,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Ez" = (
+"aEz" = (
/obj/structure/table/woodentable,
/obj/item/weapon/packageWrap,
/obj/item/weapon/paper_bin{
@@ -18587,14 +18791,14 @@
},
/turf/simulated/floor/wood,
/area/library)
-"EA" = (
+"aEA" = (
/obj/structure/railing{
dir = 1
},
/obj/structure/grille,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/atrium_three)
-"EB" = (
+/area/tether/surfacebase/surface_three_hall)
+"aEB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -18611,20 +18815,20 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"EC" = (
+"aEC" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
/turf/simulated/floor/wood,
/area/library)
-"ED" = (
+"aED" = (
/obj/structure/table/woodentable,
/obj/machinery/photocopier/faxmachine{
department = "Library Conference Room"
},
/turf/simulated/floor/wood,
/area/library)
-"EE" = (
+"aEE" = (
/obj/structure/table/woodentable,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
@@ -18632,7 +18836,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"EF" = (
+"aEF" = (
/obj/structure/table/rack{
dir = 1
},
@@ -18645,26 +18849,26 @@
/obj/item/weapon/storage/briefcase/inflatable,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"EG" = (
+"aEG" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
/turf/simulated/floor/carpet,
/area/library)
-"EH" = (
+"aEH" = (
/obj/structure/table/woodentable,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/obj/item/weapon/book/codex,
/turf/simulated/floor/carpet,
/area/library)
-"EI" = (
+"aEI" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
/turf/simulated/floor/carpet,
/area/library)
-"EJ" = (
+"aEJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18676,7 +18880,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"EK" = (
+"aEK" = (
/obj/structure/table/woodentable,
/obj/structure/cable/green{
d1 = 4;
@@ -18685,7 +18889,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"EL" = (
+"aEL" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/apc;
dir = 8;
@@ -18701,19 +18905,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"EM" = (
+"aEM" = (
/obj/machinery/space_heater,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"EN" = (
+"aEN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"EO" = (
+"aEO" = (
/obj/item/weapon/dice/d20,
/obj/item/weapon/dice,
/obj/structure/cable/green{
@@ -18724,7 +18928,7 @@
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/library)
-"EP" = (
+"aEP" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
@@ -18733,7 +18937,7 @@
},
/turf/simulated/floor/carpet,
/area/library)
-"EQ" = (
+"aEQ" = (
/obj/structure/table/woodentable,
/obj/machinery/power/apc{
dir = 4;
@@ -18746,7 +18950,7 @@
/obj/machinery/recharger,
/turf/simulated/floor/wood,
/area/library)
-"ER" = (
+"aER" = (
/obj/structure/bookcase{
name = "bookcase (Reference)"
},
@@ -18765,18 +18969,18 @@
/obj/item/weapon/book/manual/excavation,
/turf/simulated/floor/wood,
/area/library)
-"ES" = (
+"aES" = (
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"ET" = (
+"aET" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"EU" = (
+"aEU" = (
/obj/structure/bookcase{
name = "bookcase (Reference)"
},
@@ -18796,27 +19000,27 @@
/obj/item/weapon/book/manual/supermatter_engine,
/turf/simulated/floor/wood,
/area/library)
-"EV" = (
+"aEV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/wood,
/area/library)
-"EW" = (
+"aEW" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"EX" = (
+"aEX" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"EY" = (
+"aEY" = (
/obj/machinery/firealarm{
pixel_x = -30
},
@@ -18826,18 +19030,18 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"EZ" = (
+"aEZ" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Fa" = (
+"aFa" = (
/obj/effect/landmark{
name = "Observer-Start"
},
/obj/machinery/light/flamp,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Fb" = (
+"aFb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -18846,7 +19050,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
-"Fc" = (
+"aFc" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -18860,7 +19064,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Fd" = (
+"aFd" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -18869,16 +19073,16 @@
/obj/item/weapon/pen,
/turf/simulated/floor/wood,
/area/library)
-"Fe" = (
+"aFe" = (
/obj/structure/table/woodentable,
/obj/item/weapon/deck/cards,
/turf/simulated/floor/wood,
/area/library)
-"Ff" = (
+"aFf" = (
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"Fg" = (
+"aFg" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -18889,12 +19093,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"Fh" = (
+"aFh" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/remains/deer,
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"Fi" = (
+"aFi" = (
/obj/structure/table/glass,
/obj/machinery/cell_charger,
/obj/effect/floor_decal/borderfloor{
@@ -18914,7 +19118,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"Fj" = (
+"aFj" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -18934,7 +19138,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Fk" = (
+"aFk" = (
/obj/structure/table/standard,
/obj/random/maintenance/clean,
/obj/random/maintenance/medical,
@@ -18943,7 +19147,7 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atrium)
-"Fl" = (
+"aFl" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -18957,7 +19161,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
-"Fm" = (
+"aFm" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 8;
@@ -18980,7 +19184,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Fn" = (
+"aFn" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -18992,7 +19196,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Fo" = (
+"aFo" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -19026,7 +19230,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"Fp" = (
+"aFp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -19039,13 +19243,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"Fq" = (
+"aFq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/wood,
/area/library)
-"Fr" = (
+"aFr" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19053,13 +19257,13 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Fs" = (
+"aFs" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
/turf/simulated/floor/wood,
/area/library)
-"Ft" = (
+"aFt" = (
/obj/structure/bookcase{
name = "bookcase (Fiction)"
},
@@ -19069,32 +19273,31 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Fu" = (
+"aFu" = (
/obj/structure/bookcase{
name = "bookcase (Fiction)"
},
/turf/simulated/floor/wood,
/area/library)
-"Fv" = (
+"aFv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/library)
-"Fw" = (
-/obj/structure/cable/green{
- icon_state = "0-2"
+"aFw" = (
+/obj/structure/closet/crate,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/structure/window/reinforced,
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
+ dir = 5
},
-/obj/structure/cable,
-/obj/machinery/power/smes/buildable{
- charge = 0;
- output_attempt = 0;
- outputting = 0;
- RCon_tag = "Substation - Surface Civilian"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/bar{
- name = "\improper Surface Civilian Substation"
- })
-"Fx" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/testingrange)
+"aFx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
/obj/machinery/power/terminal{
@@ -19108,7 +19311,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"Fy" = (
+"aFy" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -19130,7 +19333,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Fz" = (
+"aFz" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -19147,13 +19350,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"FA" = (
+"aFA" = (
/obj/structure/bed/chair/wood{
dir = 1
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FB" = (
+"aFB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -19168,7 +19371,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FC" = (
+"aFC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -19186,7 +19389,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FD" = (
+"aFD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -19203,7 +19406,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FE" = (
+"aFE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -19221,32 +19424,28 @@
/obj/machinery/light/flamp,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FF" = (
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"aFF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"FG" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_main)
+"aFG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -19264,7 +19463,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FH" = (
+"aFH" = (
/obj/machinery/light,
/obj/item/device/radio/intercom{
dir = 2;
@@ -19273,7 +19472,7 @@
/obj/structure/table/bench/wooden,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FI" = (
+"aFI" = (
/obj/structure/table/woodentable,
/obj/machinery/alarm{
dir = 1;
@@ -19281,7 +19480,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"FJ" = (
+"aFJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -19296,7 +19495,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"FK" = (
+"aFK" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -19308,7 +19507,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"FL" = (
+"aFL" = (
/obj/structure/window/reinforced/full,
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -19325,7 +19524,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"FM" = (
+"aFM" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19342,7 +19541,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"FN" = (
+"aFN" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger/wallcharger{
pixel_x = 4;
@@ -19360,7 +19559,7 @@
/obj/item/weapon/storage/bag/trash,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"FO" = (
+"aFO" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19378,7 +19577,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"FP" = (
+"aFP" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19393,7 +19592,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"FQ" = (
+"aFQ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -19408,7 +19607,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"FR" = (
+"aFR" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19420,7 +19619,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"FS" = (
+"aFS" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19434,7 +19633,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"FT" = (
+"aFT" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
@@ -19455,13 +19654,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"FU" = (
+"aFU" = (
/obj/structure/bookcase{
name = "bookcase (Religious)"
},
/turf/simulated/floor/wood,
/area/library)
-"FV" = (
+"aFV" = (
/obj/structure/cable/green,
/obj/structure/cable/green{
d2 = 4;
@@ -19480,7 +19679,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"FW" = (
+"aFW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 2;
@@ -19495,7 +19694,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"FX" = (
+"aFX" = (
/obj/random/tech_supply,
/obj/structure/table/steel,
/obj/random/maintenance/engineering,
@@ -19503,7 +19702,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"FY" = (
+"aFY" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -19513,7 +19712,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"FZ" = (
+"aFZ" = (
/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
@@ -19522,14 +19721,14 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Ga" = (
+"aGa" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Gb" = (
+"aGb" = (
/obj/structure/table/standard{
name = "plastic table frame"
},
@@ -19539,7 +19738,7 @@
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Gc" = (
+"aGc" = (
/obj/structure/table/standard{
name = "plastic table frame"
},
@@ -19551,7 +19750,7 @@
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Gd" = (
+"aGd" = (
/obj/machinery/seed_storage/garden,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -19561,7 +19760,7 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"Ge" = (
+"aGe" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
icon_state = "extinguisher_closed";
@@ -19583,7 +19782,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Gf" = (
+"aGf" = (
/obj/machinery/status_display{
pixel_x = 32;
pixel_y = 0
@@ -19607,7 +19806,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Gg" = (
+"aGg" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -19618,13 +19817,13 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Gh" = (
+"aGh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Gi" = (
+"aGi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -19636,7 +19835,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Gj" = (
+"aGj" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -19654,7 +19853,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Gk" = (
+"aGk" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms"
},
@@ -19669,29 +19868,18 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/bar)
-"Gl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
+"aGl" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/goggles,
+/obj/structure/window/reinforced,
/obj/machinery/camera/network/research{
- dir = 1
+ icon_state = "camera";
+ dir = 8
},
-/obj/effect/floor_decal/borderfloorblack,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"Gm" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/testingrange)
+"aGm" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -19712,7 +19900,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_b)
-"Gn" = (
+"aGn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -19727,7 +19915,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"Go" = (
+"aGo" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/research{
autoclose = 0;
@@ -19749,7 +19937,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Gp" = (
+"aGp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/floor_decal/borderfloorblack{
dir = 6
@@ -19764,7 +19952,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"Gq" = (
+"aGq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -19780,7 +19968,7 @@
/obj/effect/floor_decal/corner/mauve/bordercorner,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Gr" = (
+"aGr" = (
/obj/machinery/door/firedoor/glass/hidden{
icon_state = "door_open";
dir = 2
@@ -19793,7 +19981,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Gs" = (
+"aGs" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/research{
autoclose = 0;
@@ -19816,7 +20004,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Gt" = (
+"aGt" = (
/obj/machinery/door/firedoor/glass/hidden{
icon_state = "door_open";
dir = 2
@@ -19826,7 +20014,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Gu" = (
+"aGu" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19847,7 +20035,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Gv" = (
+"aGv" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19865,14 +20053,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Gw" = (
+"aGw" = (
/obj/structure/bookcase{
name = "bookcase (Non-Fiction)"
},
/obj/item/weapon/book/codex/lore/robutt,
/turf/simulated/floor/wood,
/area/library)
-"Gx" = (
+"aGx" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -19883,12 +20071,12 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Gy" = (
+"aGy" = (
/obj/structure/railing,
/obj/structure/grille,
/turf/simulated/floor/tiled/techmaint,
/area/hallway/lower/third_south)
-"Gz" = (
+"aGz" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -19903,7 +20091,7 @@
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
-"GA" = (
+"aGA" = (
/obj/structure/sign/directions/medical{
dir = 4;
pixel_y = 8
@@ -19922,7 +20110,7 @@
},
/turf/simulated/wall,
/area/hydroponics)
-"GB" = (
+"aGB" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -19940,7 +20128,7 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"GC" = (
+"aGC" = (
/obj/machinery/computer/timeclock/premade/east,
/obj/structure/cable/green{
d1 = 1;
@@ -19970,7 +20158,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"GD" = (
+"aGD" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -19984,7 +20172,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"GE" = (
+"aGE" = (
/obj/effect/floor_decal/spline/plain{
dir = 9
},
@@ -19993,7 +20181,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"GF" = (
+"aGF" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
@@ -20005,20 +20193,20 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"GG" = (
+"aGG" = (
/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/spline/plain{
dir = 1
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"GH" = (
+"aGH" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"GI" = (
+"aGI" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -20038,24 +20226,24 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"GJ" = (
+"aGJ" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"GK" = (
+"aGK" = (
/turf/simulated/wall,
/area/crew_quarters/barrestroom)
-"GL" = (
+"aGL" = (
/obj/item/device/radio/intercom{
dir = 8;
pixel_x = 10
},
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"GM" = (
+"aGM" = (
/obj/machinery/door/firedoor/glass/hidden{
icon_state = "door_open";
dir = 2
@@ -20065,13 +20253,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"GN" = (
+"aGN" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/structure/window/basic,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"GO" = (
+"aGO" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/structure/window/basic{
@@ -20079,14 +20267,14 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"GP" = (
+"aGP" = (
/obj/structure/sign/nanotrasen,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"GQ" = (
+"aGQ" = (
/turf/simulated/wall/r_wall,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"GR" = (
+"aGR" = (
/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
dir = 4;
@@ -20109,7 +20297,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"GS" = (
+"aGS" = (
/obj/machinery/transhuman/resleever,
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -20125,7 +20313,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"GT" = (
+"aGT" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20141,7 +20329,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"GU" = (
+"aGU" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -20170,7 +20358,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"GV" = (
+"aGV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
@@ -20183,7 +20371,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"GW" = (
+"aGW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20199,7 +20387,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"GX" = (
+"aGX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20215,13 +20403,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"GY" = (
+"aGY" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/wood,
/area/library)
-"GZ" = (
+"aGZ" = (
/obj/machinery/newscaster{
pixel_x = 0;
pixel_y = 30
@@ -20241,7 +20429,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ha" = (
+"aHa" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -20263,7 +20451,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hb" = (
+"aHb" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -20282,27 +20470,27 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hc" = (
+"aHc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/wood,
/area/library)
-"Hd" = (
+"aHd" = (
/obj/machinery/newscaster{
pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/wood,
/area/library)
-"He" = (
+"aHe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/wood,
/area/library)
-"Hf" = (
+"aHf" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -20318,13 +20506,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hg" = (
+"aHg" = (
/obj/structure/bookcase{
name = "bookcase (Non-Fiction)"
},
/turf/simulated/floor/wood,
/area/library)
-"Hh" = (
+"aHh" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -20345,7 +20533,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hi" = (
+"aHi" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -20371,24 +20559,35 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hj" = (
-/obj/machinery/camera/network/tether,
+"aHj" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 8;
+ icon_state = "borderfloor";
+ pixel_x = 0
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 10
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+ dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/camera/network/research{
+ icon_state = "camera";
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
-"Hk" = (
+/area/rnd/research/researchdivision)
+"aHk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20410,7 +20609,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hl" = (
+"aHl" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -20429,7 +20628,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hm" = (
+"aHm" = (
/obj/machinery/light{
dir = 1
},
@@ -20446,7 +20645,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hn" = (
+"aHn" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
@@ -20462,7 +20661,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ho" = (
+"aHo" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -20475,7 +20674,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hp" = (
+"aHp" = (
/obj/machinery/newscaster{
pixel_x = 0;
pixel_y = 30
@@ -20501,7 +20700,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hq" = (
+"aHq" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -20526,7 +20725,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hr" = (
+"aHr" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -20545,13 +20744,13 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hs" = (
+"aHs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ht" = (
+"aHt" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20562,7 +20761,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Hu" = (
+"aHu" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 1
@@ -20571,7 +20770,7 @@
dir = 1
},
/area/crew_quarters/bar)
-"Hv" = (
+"aHv" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20580,7 +20779,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Hw" = (
+"aHw" = (
/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -20589,7 +20788,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"Hx" = (
+"aHx" = (
/obj/structure/table/marble,
/obj/machinery/door/blast/shutters{
dir = 8;
@@ -20604,7 +20803,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"Hy" = (
+"aHy" = (
/obj/structure/table/marble,
/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,
/obj/machinery/door/blast/shutters{
@@ -20615,7 +20814,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"Hz" = (
+"aHz" = (
/obj/structure/table/marble,
/obj/machinery/door/blast/shutters{
dir = 1;
@@ -20625,7 +20824,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"HA" = (
+"aHA" = (
/obj/structure/table/marble,
/obj/item/weapon/reagent_containers/food/drinks/glass2/shot,
/obj/machinery/door/blast/shutters{
@@ -20636,7 +20835,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"HB" = (
+"aHB" = (
/obj/structure/extinguisher_cabinet{
dir = 8;
icon_state = "extinguisher_closed";
@@ -20648,7 +20847,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"HC" = (
+"aHC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -20658,7 +20857,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"HD" = (
+"aHD" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -20670,7 +20869,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"HE" = (
+"aHE" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/structure/window/basic{
@@ -20678,7 +20877,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"HF" = (
+"aHF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -20692,30 +20891,14 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"HG" = (
+"aHG" = (
+/obj/machinery/cryopod/robot,
/obj/machinery/camera/network/research{
- dir = 8
+ dir = 1
},
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/closet/wardrobe/science_white,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"HH" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/chargebay)
+"aHH" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -20736,7 +20919,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"HI" = (
+"aHI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
@@ -20763,7 +20946,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"HJ" = (
+"aHJ" = (
/obj/machinery/transhuman/synthprinter,
/obj/machinery/light{
dir = 8;
@@ -20779,7 +20962,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"HK" = (
+"aHK" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20789,14 +20972,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"HL" = (
+"aHL" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"HM" = (
+"aHM" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -20811,7 +20994,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"HN" = (
+"aHN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20820,7 +21003,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"HO" = (
+"aHO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20830,7 +21013,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"HP" = (
+"aHP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20843,7 +21026,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"HQ" = (
+"aHQ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -20856,7 +21039,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"HR" = (
+"aHR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -20870,14 +21053,14 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"HS" = (
+"aHS" = (
/obj/machinery/light{
dir = 4
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"HT" = (
+"aHT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -20894,7 +21077,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"HU" = (
+"aHU" = (
/obj/machinery/firealarm{
dir = 4;
layer = 3.3;
@@ -20906,7 +21089,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"HV" = (
+"aHV" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -20925,7 +21108,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"HW" = (
+"aHW" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20939,7 +21122,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"HX" = (
+"aHX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -20958,7 +21141,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"HY" = (
+"aHY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -20975,7 +21158,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"HZ" = (
+"aHZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -20987,7 +21170,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ia" = (
+"aIa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -21001,7 +21184,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ib" = (
+"aIb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -21020,7 +21203,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ic" = (
+"aIc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
@@ -21034,7 +21217,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Id" = (
+"aId" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -21045,7 +21228,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ie" = (
+"aIe" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -21056,7 +21239,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"If" = (
+"aIf" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -21072,7 +21255,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Ig" = (
+"aIg" = (
/obj/machinery/door/airlock/multi_tile/glass{
dir = 1;
name = "Bar"
@@ -21086,7 +21269,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/turf/simulated/floor/tiled/monofloor,
/area/crew_quarters/bar)
-"Ih" = (
+"aIh" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -21100,7 +21283,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Ii" = (
+"aIi" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21108,7 +21291,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"Ij" = (
+"aIj" = (
/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -21126,7 +21309,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"Ik" = (
+"aIk" = (
/obj/structure/table/marble,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -21152,7 +21335,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"Il" = (
+"aIl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -21166,17 +21349,17 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"Im" = (
+"aIm" = (
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"In" = (
+"aIn" = (
/obj/machinery/computer/guestpass{
dir = 8;
pixel_x = 25
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"Io" = (
+"aIo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
@@ -21192,24 +21375,34 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Ip" = (
+"aIp" = (
/obj/structure/flora/pottedplant/unusual,
/obj/effect/floor_decal/borderfloorblack{
dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Iq" = (
-/obj/structure/flora/pottedplant/subterranean,
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorblack{
+"aIq" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/camera/network/research,
/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_hallway)
-"Ir" = (
+/area/rnd/research/researchdivision)
+"aIr" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/research{
autoclose = 0;
@@ -21232,7 +21425,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Is" = (
+"aIs" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/research{
autoclose = 0;
@@ -21255,31 +21448,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"It" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
+"aIt" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
dir = 10
},
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
/turf/simulated/floor/tiled,
-/area/rnd/research/researchdivision)
-"Iu" = (
+/area/tether/surfacebase/security/common)
+"aIu" = (
/obj/machinery/computer/transhuman/resleeving{
dir = 4
},
@@ -21301,27 +21484,27 @@
/obj/item/weapon/storage/box/backup_kit,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Iv" = (
+"aIv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Iw" = (
+"aIw" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ix" = (
+"aIx" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/sign/department/robo{
pixel_x = -32
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Iy" = (
+"aIy" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -21335,7 +21518,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Iz" = (
+"aIz" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -21346,7 +21529,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"IA" = (
+"aIA" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -21358,7 +21541,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"IB" = (
+"aIB" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -21376,7 +21559,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"IC" = (
+"aIC" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -21390,7 +21573,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"ID" = (
+"aID" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -21408,7 +21591,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"IE" = (
+"aIE" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -21420,21 +21603,17 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"IF" = (
-/obj/machinery/camera/network/tether{
- dir = 1
+"aIF" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
-"IG" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aIG" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -21448,45 +21627,39 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"IH" = (
+"aIH" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"II" = (
+"aII" = (
/obj/structure/sign/department/bar{
pixel_x = 32
},
/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"IJ" = (
+"aIJ" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"IK" = (
+"aIK" = (
/obj/machinery/light,
/obj/structure/flora/pottedplant,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"IL" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/obj/machinery/media/jukebox,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"IM" = (
+"aIL" = (
+/obj/machinery/camera/network/security,
+/turf/simulated/open,
+/area/tether/surfacebase/security/upperhall)
+"aIM" = (
/obj/structure/table/marble,
/obj/machinery/door/blast/shutters{
dir = 8;
@@ -21496,7 +21669,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"IN" = (
+"aIN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -21506,36 +21679,37 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"IO" = (
+"aIO" = (
/obj/machinery/vending/boozeomat,
/obj/machinery/light,
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"IP" = (
+"aIP" = (
/obj/machinery/smartfridge/drinks,
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"IQ" = (
-/obj/structure/table/marble,
-/obj/machinery/chemical_dispenser/bar_alc/full,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"IR" = (
-/obj/structure/table/marble,
-/obj/machinery/chemical_dispenser/bar_soft/full,
+"aIQ" = (
+/obj/structure/flora/pottedplant,
/obj/machinery/camera/network/civilian{
- dir = 1
+ dir = 9
},
-/turf/simulated/floor/lino,
+/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"IS" = (
+"aIR" = (
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/medical/triage)
+"aIS" = (
/obj/structure/table/marble,
/obj/item/weapon/reagent_containers/glass/rag,
/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
/obj/item/weapon/book/manual/barman_recipes,
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"IT" = (
+"aIT" = (
/obj/structure/table/marble,
/obj/item/weapon/flame/lighter/zippo,
/obj/item/weapon/tool/screwdriver,
@@ -21553,7 +21727,7 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"IU" = (
+"aIU" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -21569,7 +21743,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"IV" = (
+"aIV" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -21584,7 +21758,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"IW" = (
+"aIW" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -21595,7 +21769,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"IX" = (
+"aIX" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/apc;
dir = 8;
@@ -21619,7 +21793,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"IY" = (
+"aIY" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
icon_state = "1-2"
@@ -21628,7 +21802,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"IZ" = (
+"aIZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -21652,7 +21826,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Ja" = (
+"aJa" = (
/obj/machinery/door/blast/regular{
density = 0;
dir = 8;
@@ -21675,7 +21849,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Jb" = (
+"aJb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -21685,7 +21859,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Jc" = (
+"aJc" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -21694,7 +21868,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"Jd" = (
+"aJd" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -21707,13 +21881,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Je" = (
+"aJe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Jf" = (
+"aJf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21723,7 +21897,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"Jg" = (
+"aJg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21734,7 +21908,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Jh" = (
+"aJh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21746,25 +21920,13 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ji" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- name = "Robotics";
- sortType = "Robotics"
+"aJi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"Jj" = (
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aJj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21773,7 +21935,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Jk" = (
+"aJk" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -21783,22 +21945,21 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Jl" = (
-/obj/machinery/computer/rdconsole/robotics{
- dir = 8
- },
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
+"aJl" = (
+/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
-/obj/effect/floor_decal/corner/mauve/border{
+/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"Jm" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"aJm" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
dir = 4;
@@ -21807,18 +21968,18 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"Jn" = (
+"aJn" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/hallway/lower/third_south)
-"Jo" = (
+"aJo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_external/public,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Jp" = (
+"aJp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
@@ -21830,7 +21991,7 @@
/obj/machinery/door/airlock/glass_external/public,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Jq" = (
+"aJq" = (
/obj/machinery/door/airlock/multi_tile/glass,
/obj/effect/floor_decal/industrial/warning/corner{
icon_state = "warningcorner";
@@ -21839,21 +22000,21 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Jr" = (
+"aJr" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Js" = (
+"aJs" = (
/obj/structure/railing{
dir = 1
},
/obj/structure/grille,
/turf/simulated/floor/tiled/techmaint,
/area/crew_quarters/bar)
-"Jt" = (
+"aJt" = (
/turf/simulated/wall,
/area/tether/surfacebase/bar_backroom)
-"Ju" = (
+"aJu" = (
/obj/machinery/door/airlock{
name = "Bar Backroom";
req_access = list(25)
@@ -21868,7 +22029,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/lino,
/area/tether/surfacebase/bar_backroom)
-"Jv" = (
+"aJv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/apc;
@@ -21879,7 +22040,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Jw" = (
+"aJw" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -21892,7 +22053,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Jx" = (
+"aJx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -21901,7 +22062,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Jy" = (
+"aJy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -21912,7 +22073,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Jz" = (
+"aJz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21921,24 +22082,17 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"JA" = (
-/obj/machinery/door/firedoor/glass/hidden,
-/obj/structure/disposalpipe/segment{
+"aJA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/alarm{
- alarm_id = "pen_nine";
- breach_detection = 0;
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"JB" = (
+"aJB" = (
/obj/machinery/light{
dir = 4
},
@@ -21947,7 +22101,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"JC" = (
+"aJC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -21956,21 +22110,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"JD" = (
-/obj/structure/disposalpipe/segment{
+"aJD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"JE" = (
+"aJE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -21983,7 +22132,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"JF" = (
+"aJF" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -22001,25 +22150,25 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JG" = (
+"aJG" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JH" = (
+"aJH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JI" = (
+"aJI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JJ" = (
+"aJJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
@@ -22030,14 +22179,14 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JK" = (
+"aJK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JL" = (
+"aJL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
dir = 4
@@ -22045,7 +22194,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JM" = (
+"aJM" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -22065,7 +22214,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"JN" = (
+"aJN" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -22084,7 +22233,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"JO" = (
+"aJO" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -22096,7 +22245,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"JP" = (
+"aJP" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -22115,7 +22264,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"JQ" = (
+"aJQ" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger,
/obj/effect/floor_decal/borderfloor{
@@ -22134,7 +22283,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"JR" = (
+"aJR" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -22145,13 +22294,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"JS" = (
+"aJS" = (
/obj/effect/floor_decal/industrial/loading{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"JT" = (
+"aJT" = (
/obj/machinery/mecha_part_fabricator{
dir = 8
},
@@ -22175,7 +22324,7 @@
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"JU" = (
+"aJU" = (
/obj/machinery/recharge_station,
/obj/machinery/light{
dir = 8;
@@ -22187,15 +22336,15 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"JV" = (
-/obj/machinery/recharge_station,
-/obj/machinery/camera/network/research,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
+"aJV" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/obj/machinery/camera/network/civilian{
+ dir = 1
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"JW" = (
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"aJW" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 1
@@ -22208,14 +22357,14 @@
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"JX" = (
+"aJX" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 1
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"JY" = (
+"aJY" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -22227,17 +22376,17 @@
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"JZ" = (
+"aJZ" = (
/obj/effect/floor_decal/borderfloorblack/corner,
/obj/effect/floor_decal/industrial/danger/corner,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Ka" = (
+"aKa" = (
/obj/effect/floor_decal/borderfloorblack,
/obj/effect/floor_decal/industrial/danger,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Kb" = (
+"aKb" = (
/obj/effect/floor_decal/borderfloorblack,
/obj/effect/floor_decal/industrial/danger,
/obj/machinery/light{
@@ -22245,13 +22394,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Kc" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/camera/network/tether,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
-"Kd" = (
+"aKc" = (
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/freezer)
+"aKd" = (
/obj/effect/floor_decal/borderfloorblack/corner{
icon_state = "borderfloorcorner_black";
dir = 8
@@ -22262,25 +22411,25 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Ke" = (
+"aKe" = (
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"Kf" = (
+"aKf" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/tether/surfacebase/shuttle_pad)
-"Kg" = (
+"aKg" = (
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Kh" = (
+"aKh" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Ki" = (
+"aKi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
dir = 4
@@ -22293,10 +22442,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Kj" = (
+"aKj" = (
/turf/simulated/wall,
/area/tether/surfacebase/shuttle_pad)
-"Kk" = (
+"aKk" = (
/obj/item/weapon/tank/emergency/oxygen/double,
/obj/item/clothing/gloves/fyellow,
/obj/item/weapon/book{
@@ -22307,7 +22456,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/tether/surfacebase/shuttle_pad)
-"Kl" = (
+"aKl" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
@@ -22317,7 +22466,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Km" = (
+"aKm" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
},
@@ -22328,25 +22477,28 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Kn" = (
+"aKn" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
scrub_id = "atrium"
},
/turf/simulated/floor/tiled/techmaint,
/area/crew_quarters/bar)
-"Ko" = (
+"aKo" = (
/obj/structure/closet/secure_closet/bar{
req_access = list(25)
},
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Kp" = (
+"aKp" = (
/obj/structure/sink{
pixel_y = 25
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Kq" = (
+"aKq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -22358,7 +22510,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Kr" = (
+"aKr" = (
/obj/machinery/light/small{
dir = 1
},
@@ -22367,7 +22519,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Ks" = (
+"aKs" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -22381,26 +22533,23 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Kt" = (
-/obj/structure/bed/chair/comfy{
- dir = 8
- },
+"aKt" = (
/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/bar_backroom)
-"Ku" = (
+/turf/simulated/floor/grass,
+/area/hydroponics/cafegarden)
+"aKu" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Kv" = (
+"aKv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Kw" = (
+"aKw" = (
/obj/machinery/light/small{
dir = 1
},
@@ -22409,14 +22558,14 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Kx" = (
+"aKx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Ky" = (
+"aKy" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -22426,7 +22575,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Kz" = (
+"aKz" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -22434,7 +22583,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"KA" = (
+"aKA" = (
/obj/machinery/door/airlock/glass_medical{
name = "Xenobiology First Aid";
req_one_access = list(5,47)
@@ -22446,7 +22595,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"KB" = (
+"aKB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -22460,7 +22609,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"KC" = (
+"aKC" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -22469,17 +22618,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"KD" = (
-/obj/structure/closet/crate,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research/testingrange)
-"KE" = (
+"aKD" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/shuttle_pad)
+"aKE" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/door/window/brigdoor/southleft{
req_access = list(47);
@@ -22487,7 +22632,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"KF" = (
+"aKF" = (
/obj/structure/table/reinforced,
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/glasses/goggles,
@@ -22495,14 +22640,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"KG" = (
+"aKG" = (
/obj/structure/table/reinforced,
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/glasses/goggles,
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"KH" = (
+"aKH" = (
/obj/structure/table/reinforced,
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/glasses/goggles,
@@ -22510,19 +22655,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"KI" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/glasses/goggles,
-/obj/structure/window/reinforced,
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- icon_state = "extinguisher_closed";
- pixel_x = 30
+"aKI" = (
+/obj/machinery/camera/network/civilian{
+ dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research/testingrange)
-"KJ" = (
+/turf/simulated/floor/reinforced,
+/area/tether/surfacebase/shuttle_pad)
+"aKJ" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger,
/obj/structure/cable/green{
@@ -22544,7 +22683,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"KK" = (
+"aKK" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -22562,7 +22701,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"KL" = (
+"aKL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -22570,7 +22709,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
/area/assembly/robotics)
-"KM" = (
+"aKM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -22579,7 +22718,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"KN" = (
+"aKN" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -22590,7 +22729,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"KO" = (
+"aKO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -22600,20 +22739,20 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"KP" = (
+"aKP" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"KQ" = (
+"aKQ" = (
/obj/machinery/mech_recharger,
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"KR" = (
+"aKR" = (
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"KS" = (
+"aKS" = (
/obj/machinery/mech_recharger,
/obj/machinery/light{
dir = 4;
@@ -22621,7 +22760,7 @@
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"KT" = (
+"aKT" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
@@ -22630,10 +22769,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"KU" = (
+"aKU" = (
/turf/simulated/floor/reinforced,
/area/tether/surfacebase/shuttle_pad)
-"KV" = (
+"aKV" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
},
@@ -22643,13 +22782,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"KW" = (
+"aKW" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"KX" = (
+"aKX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -22666,27 +22805,31 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"KY" = (
+"aKY" = (
/obj/item/clothing/under/color/grey,
/obj/item/clothing/mask/gas/wwii,
/obj/item/weapon/storage/belt/utility/full,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/tether/surfacebase/shuttle_pad)
-"KZ" = (
+"aKZ" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"La" = (
-/obj/machinery/camera/network/tether{
- dir = 9
+"aLa" = (
+/obj/item/stack/material/plastic,
+/obj/structure/table/rack,
+/obj/item/stack/material/steel{
+ amount = 3
},
-/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
-"Lb" = (
+/obj/random/maintenance/engineering,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
+"aLb" = (
/obj/structure/table/woodentable,
/obj/machinery/alarm{
dir = 4;
@@ -22699,13 +22842,13 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Lc" = (
+"aLc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Ld" = (
+"aLd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
@@ -22717,7 +22860,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Le" = (
+"aLe" = (
/obj/effect/landmark/start{
name = "Bartender"
},
@@ -22728,10 +22871,10 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Lf" = (
+"aLf" = (
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Lg" = (
+"aLg" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = 30;
pixel_z = 0
@@ -22741,10 +22884,10 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"Lh" = (
+"aLh" = (
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Li" = (
+"aLi" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
icon_state = "2-4"
@@ -22758,7 +22901,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"Lj" = (
+"aLj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -22769,7 +22912,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Lk" = (
+"aLk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -22780,13 +22923,13 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"Ll" = (
+"aLl" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"Lm" = (
+"aLm" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
@@ -22795,14 +22938,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"Ln" = (
-/obj/effect/floor_decal/industrial/warning{
+"aLn" = (
+/obj/effect/floor_decal/borderfloorblack{
dir = 1
},
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research/testingrange)
-"Lo" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/shuttle_pad)
+"aLo" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
@@ -22811,7 +22959,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"Lp" = (
+"aLp" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
@@ -22822,7 +22970,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"Lq" = (
+"aLq" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/alarm{
dir = 4;
@@ -22845,7 +22993,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Lr" = (
+"aLr" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -22860,7 +23008,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ls" = (
+"aLs" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22870,7 +23018,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
/area/assembly/robotics)
-"Lt" = (
+"aLt" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22878,7 +23026,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Lu" = (
+"aLu" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22889,7 +23037,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Lv" = (
+"aLv" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -22902,7 +23050,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"Lw" = (
+"aLw" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22914,7 +23062,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"Lx" = (
+"aLx" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22922,7 +23070,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"Ly" = (
+"aLy" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22930,7 +23078,7 @@
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"Lz" = (
+"aLz" = (
/obj/structure/cable/green{
icon_state = "0-8"
},
@@ -22941,12 +23089,12 @@
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"LA" = (
+"aLA" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_external/public,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"LB" = (
+"aLB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
@@ -22958,7 +23106,7 @@
/obj/machinery/door/airlock/glass_external/public,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"LC" = (
+"aLC" = (
/obj/structure/table/woodentable,
/obj/item/weapon/storage/box/beanbags,
/obj/item/weapon/gun/projectile/shotgun/doublebarrel,
@@ -22971,14 +23119,14 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"LD" = (
+"aLD" = (
/obj/structure/table/woodentable,
/obj/machinery/reagentgrinder,
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/obj/item/weapon/packageWrap,
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"LE" = (
+"aLE" = (
/obj/structure/table/woodentable,
/obj/machinery/firealarm{
dir = 1;
@@ -22986,7 +23134,7 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"LF" = (
+"aLF" = (
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -22995,11 +23143,11 @@
/obj/structure/cable/green,
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"LG" = (
+"aLG" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"LH" = (
+"aLH" = (
/obj/structure/closet/gmcloset{
icon_closed = "black";
icon_state = "black";
@@ -23010,40 +23158,37 @@
/obj/item/device/retail_scanner/civilian,
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"LI" = (
+"aLI" = (
/obj/machinery/door/airlock{
name = "Unit 3"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"LJ" = (
+"aLJ" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"LK" = (
+"aLK" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"LL" = (
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
+"aLL" = (
+/obj/machinery/camera/network/civilian{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_hallway)
-"LM" = (
+/area/tether/surfacebase/shuttle_pad)
+"aLM" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/open,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"LN" = (
+"aLN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
icon_state = "1-2"
@@ -23052,7 +23197,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"LO" = (
+"aLO" = (
/obj/machinery/door/airlock/research{
name = "Xenobiology Equipment Storage";
req_access = list();
@@ -23066,12 +23211,11 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"LP" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_stairs)
-"LQ" = (
+"aLP" = (
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/wood,
+/area/library)
+"aLQ" = (
/obj/machinery/alarm{
alarm_id = "anomaly_testing";
breach_detection = 0;
@@ -23083,7 +23227,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"LR" = (
+"aLR" = (
/obj/machinery/door/airlock/research{
name = "Xenobiology Lab";
req_access = list();
@@ -23097,14 +23241,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"LS" = (
+"aLS" = (
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"LT" = (
+"aLT" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"LU" = (
+"aLU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -23116,7 +23260,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"LV" = (
+"aLV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -23124,13 +23268,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
/area/assembly/robotics)
-"LW" = (
+"aLW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"LX" = (
+"aLX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -23147,7 +23291,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"LY" = (
+"aLY" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -23158,7 +23302,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"LZ" = (
+"aLZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -23176,13 +23320,13 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"Ma" = (
+"aMa" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"Mb" = (
+"aMb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -23191,7 +23335,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Mc" = (
+"aMc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -23205,13 +23349,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Md" = (
+"aMd" = (
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Me" = (
+"aMe" = (
/obj/structure/cable/green{
icon_state = "0-2"
},
@@ -23223,7 +23367,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"Mf" = (
+"aMf" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
@@ -23245,7 +23389,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Mg" = (
+"aMg" = (
/obj/machinery/light/small{
dir = 4;
pixel_y = 0
@@ -23253,7 +23397,7 @@
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Mh" = (
+"aMh" = (
/obj/machinery/light/small{
dir = 4;
pixel_y = 0
@@ -23263,7 +23407,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"Mi" = (
+"aMi" = (
/obj/structure/flora/pottedplant/unusual,
/obj/machinery/firealarm{
dir = 8;
@@ -23275,27 +23419,23 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Mj" = (
+"aMj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Mk" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
+"aMk" = (
+/obj/machinery/camera/network/civilian{
+ dir = 9
},
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_hallway)
-"Ml" = (
+/turf/simulated/floor/wood,
+/area/library)
+"aMl" = (
/turf/simulated/open,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"Mm" = (
+"aMm" = (
/obj/item/device/radio/intercom{
dir = 4;
pixel_x = 24
@@ -23303,12 +23443,12 @@
/obj/structure/flora/pottedplant/unusual,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Mn" = (
+"aMn" = (
/obj/structure/table/wooden_reinforced,
/obj/item/device/radio/phone,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Mo" = (
+"aMo" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
icon_state = "extinguisher_closed";
@@ -23316,23 +23456,28 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Mp" = (
+"aMp" = (
/obj/item/device/radio/intercom{
dir = 4;
pixel_x = 24
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Mq" = (
+"aMq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_x = 30;
+ pixel_y = -22
+ },
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Mr" = (
+"aMr" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -23344,20 +23489,20 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ms" = (
+"aMs" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Mt" = (
+"aMt" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Mu" = (
+"aMu" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -23381,7 +23526,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Mv" = (
+"aMv" = (
/obj/machinery/cryopod/robot,
/obj/machinery/light{
dir = 8;
@@ -23392,18 +23537,20 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/chargebay)
-"Mw" = (
-/obj/machinery/cryopod/robot,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"Mx" = (
+"aMw" = (
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/recreation_area)
+"aMx" = (
/obj/machinery/computer/cryopod/robot{
dir = 1;
pixel_y = -28
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"My" = (
+"aMy" = (
/obj/machinery/light_switch{
dir = 1;
pixel_x = 2;
@@ -23411,7 +23558,7 @@
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"Mz" = (
+"aMz" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -23422,12 +23569,12 @@
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
-"MA" = (
+"aMA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"MB" = (
+"aMB" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -23435,7 +23582,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"MC" = (
+"aMC" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -23443,7 +23590,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"MD" = (
+"aMD" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -23451,56 +23598,43 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"ME" = (
+"aME" = (
/turf/simulated/shuttle/wall,
/area/shuttle/tether/surface)
-"MF" = (
+"aMF" = (
/obj/structure/shuttle/window,
/obj/structure/grille,
/turf/simulated/shuttle/plating/airless,
/area/shuttle/tether/surface)
-"MG" = (
+"aMG" = (
/obj/structure/railing{
dir = 4
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"MH" = (
+"aMH" = (
/obj/structure/flora/pottedplant/crystal,
/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"MI" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+"aMI" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/camera/network/civilian{
+ dir = 1
},
-/obj/structure/table/reinforced,
-/obj/machinery/computer/med_data/laptop{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"MJ" = (
-/obj/structure/table/glass,
-/obj/item/bodybag,
-/obj/item/device/healthanalyzer,
-/obj/item/weapon/storage/firstaid,
-/obj/random/medical,
-/obj/structure/closet/medical_wall{
- pixel_y = 35
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/pool)
+"aMJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/sink/kitchen{
+ name = "sink";
+ pixel_y = 32
},
/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_first_aid)
-"MK" = (
+/area/rnd/outpost/xenobiology/outpost_decon)
+"aMK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -23515,7 +23649,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"ML" = (
+"aML" = (
/obj/structure/closet/bombcloset,
/obj/machinery/light_switch{
dir = 4;
@@ -23523,18 +23657,18 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"MM" = (
+"aMM" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"MN" = (
+"aMN" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"MO" = (
+"aMO" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -23542,7 +23676,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"MP" = (
+"aMP" = (
/obj/structure/table/standard,
/obj/item/device/defib_kit/jumper_kit,
/obj/item/weapon/storage/box/gloves,
@@ -23552,7 +23686,7 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"MQ" = (
+"aMQ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -23566,30 +23700,19 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"MR" = (
+"aMR" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"MS" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"MT" = (
+"aMS" = (
+/obj/machinery/vending/fitness,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/pool)
+"aMT" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
@@ -23601,7 +23724,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"MU" = (
+"aMU" = (
/obj/effect/floor_decal/steeldecal/steel_decals_central5{
icon_state = "steel_decals_central5";
dir = 8
@@ -23613,7 +23736,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"MV" = (
+"aMV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -23626,9 +23749,12 @@
icon_state = "extinguisher_closed";
pixel_x = -30
},
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"MW" = (
+"aMW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
dir = 4
@@ -23642,20 +23768,30 @@
/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"MX" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+"aMX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
},
-/obj/effect/floor_decal/steeldecal/steel_decals5,
/obj/machinery/camera/network/tether{
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
-"MY" = (
+/area/tether/surfacebase/surface_three_hall)
+"aMY" = (
/obj/effect/floor_decal/steeldecal/steel_decals_central5{
icon_state = "steel_decals_central5";
dir = 4
@@ -23665,19 +23801,19 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"MZ" = (
+"aMZ" = (
/obj/structure/closet/firecloset,
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"Na" = (
+"aNa" = (
/obj/machinery/computer/shuttle_control/tether_backup,
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"Nb" = (
+"aNb" = (
/obj/structure/closet/emcloset,
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"Nc" = (
+"aNc" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 22;
@@ -23688,7 +23824,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Nd" = (
+"aNd" = (
/obj/structure/table/glass,
/obj/machinery/firealarm{
dir = 8;
@@ -23700,7 +23836,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Ne" = (
+"aNe" = (
/obj/structure/closet/secure_closet/medical_wall/anesthetics{
pixel_x = -32;
req_access = list();
@@ -23720,20 +23856,20 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Nf" = (
+"aNf" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ng" = (
+"aNg" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/landmark/start{
name = "Roboticist"
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Nh" = (
+"aNh" = (
/obj/structure/table/standard,
/obj/item/weapon/paper_bin{
pixel_x = -1;
@@ -23751,7 +23887,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Ni" = (
+"aNi" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -23760,22 +23896,22 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/shuttle_pad)
-"Nj" = (
+"aNj" = (
/obj/structure/closet/hydrant{
pixel_y = 32
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"Nk" = (
+"aNk" = (
/obj/structure/bed/chair/shuttle{
dir = 4
},
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"Nl" = (
+"aNl" = (
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"Nm" = (
+"aNm" = (
/obj/structure/bed/chair/shuttle{
dir = 8
},
@@ -23788,30 +23924,39 @@
},
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"Nn" = (
+"aNn" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"No" = (
-/obj/machinery/camera/network/research{
- dir = 4
+"aNo" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
},
-/obj/machinery/holoplant,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/machinery/camera/network/tether{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_hallway)
-"Np" = (
-/obj/structure/catwalk,
-/obj/machinery/camera/network/outside{
+/area/tether/surfacebase/surface_three_hall)
+"aNp" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"Nq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aNq" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/effect/decal/cleanable/blood,
/obj/structure/bed/chair{
@@ -23819,12 +23964,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"Nr" = (
+"aNr" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/target_stake,
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
-"Ns" = (
+"aNs" = (
/obj/structure/table/standard,
/obj/item/weapon/book/manual/robotics_cyborgs,
/obj/item/clothing/glasses/omnihud/rnd,
@@ -23843,7 +23988,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Nt" = (
+"aNt" = (
/obj/structure/table/standard,
/obj/item/device/mmi,
/obj/item/device/mmi/digital/posibrain,
@@ -23851,13 +23996,13 @@
/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Nu" = (
+"aNu" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Nv" = (
+"aNv" = (
/obj/structure/table/standard,
/obj/machinery/computer/med_data/laptop{
dir = 1
@@ -23866,7 +24011,7 @@
/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Nw" = (
+"aNw" = (
/obj/structure/table/standard,
/obj/item/weapon/pen,
/obj/item/weapon/pen,
@@ -23882,12 +24027,12 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/assembly/robotics)
-"Nx" = (
+"aNx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Ny" = (
+"aNy" = (
/obj/structure/table/rack/shelf,
/obj/item/weapon/storage/backpack/parachute{
pixel_x = -4;
@@ -23907,7 +24052,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Nz" = (
+"aNz" = (
/obj/machinery/door/airlock/glass_external{
frequency = 1380;
icon_state = "door_locked";
@@ -23917,7 +24062,7 @@
},
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"NA" = (
+"aNA" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -23933,7 +24078,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"NB" = (
+"aNB" = (
/obj/structure/railing{
dir = 8
},
@@ -23943,14 +24088,14 @@
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"NC" = (
+"aNC" = (
/obj/structure/railing{
icon_state = "railing0";
dir = 1
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"ND" = (
+"aND" = (
/obj/structure/railing{
dir = 4
},
@@ -23960,38 +24105,46 @@
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"NE" = (
-/obj/machinery/camera/network/research{
+"aNE" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research/testingrange)
-"NF" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aNF" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/assembly/robotics)
-"NG" = (
+"aNG" = (
/turf/simulated/floor/tiled/monofloor{
dir = 1
},
/area/tether/surfacebase/shuttle_pad)
-"NH" = (
+"aNH" = (
/obj/structure/bed/chair{
dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"NI" = (
+"aNI" = (
/obj/machinery/computer/atmos_alert{
icon_state = "computer";
dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"NJ" = (
+"aNJ" = (
/obj/structure/bed/chair/shuttle{
dir = 1
},
@@ -24002,13 +24155,13 @@
},
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"NK" = (
+"aNK" = (
/obj/structure/bed/chair/shuttle{
dir = 1
},
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether/surface)
-"NL" = (
+"aNL" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/structure/window/basic{
@@ -24016,37 +24169,37 @@
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"NM" = (
+"aNM" = (
/obj/structure/railing{
dir = 8
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"NN" = (
+"aNN" = (
/turf/simulated/floor/tiled/monofloor,
/area/tether/surfacebase/shuttle_pad)
-"NO" = (
+"aNO" = (
/obj/machinery/computer/shuttle_control/tether_backup{
icon_state = "computer";
dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"NP" = (
+"aNP" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/shuttle/plating/airless,
/area/shuttle/tether/surface)
-"NQ" = (
+"aNQ" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/turf/simulated/open,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"NR" = (
+"aNR" = (
/obj/structure/catwalk,
/obj/structure/railing{
icon_state = "railing0";
@@ -24054,7 +24207,7 @@
},
/turf/simulated/open,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"NS" = (
+"aNS" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -24065,36 +24218,36 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"NT" = (
+"aNT" = (
/obj/structure/closet/firecloset,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"NU" = (
+"aNU" = (
/obj/structure/railing{
dir = 4
},
/obj/structure/railing,
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"NV" = (
+"aNV" = (
/obj/structure/sign/department/xenolab,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"NW" = (
+"aNW" = (
/obj/structure/railing{
dir = 8
},
/obj/structure/railing,
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"NX" = (
+"aNX" = (
/obj/structure/closet/hydrant{
pixel_y = -32
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"NY" = (
+"aNY" = (
/obj/machinery/button/remote/blast_door{
dir = 1;
id = "hangarsurface";
@@ -24104,24 +24257,43 @@
},
/turf/simulated/floor/reinforced,
/area/tether/surfacebase/shuttle_pad)
-"NZ" = (
+"aNZ" = (
/obj/structure/sign/xenobio,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Oa" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+"aOa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/blue,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"Ob" = (
-/obj/structure/catwalk,
-/obj/machinery/camera/network/outside,
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"Oc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/camera/network/tether,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aOb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aOc" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -24131,7 +24303,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Od" = (
+"aOd" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -24146,7 +24318,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Oe" = (
+"aOe" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
@@ -24156,16 +24328,33 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Of" = (
+"aOf" = (
/turf/simulated/wall/r_wall,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Og" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"aOg" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"Oh" = (
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aOh" = (
/obj/structure/cable/green,
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/apc;
@@ -24175,20 +24364,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"Oi" = (
+"aOi" = (
/obj/structure/railing{
dir = 1
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"Oj" = (
+"aOj" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"Ok" = (
+"aOk" = (
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"Ol" = (
+"aOl" = (
/obj/structure/shuttle/engine/propulsion{
anchored = 0;
dir = 8;
@@ -24196,18 +24385,18 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"Om" = (
+"aOm" = (
/obj/structure/railing,
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"On" = (
+"aOn" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 4
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"Oo" = (
+"aOo" = (
/obj/item/device/radio/intercom{
dir = 1;
pixel_y = 24;
@@ -24222,23 +24411,29 @@
/obj/structure/curtain/open/shower,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Op" = (
+"aOp" = (
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Oq" = (
-/obj/machinery/camera/network/research{
+"aOq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 5;
- pixel_y = 0
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
},
-/obj/structure/curtain/open/shower,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Or" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/third_south)
+"aOr" = (
/obj/machinery/light{
dir = 4
},
@@ -24247,7 +24442,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Os" = (
+"aOs" = (
/obj/structure/railing{
dir = 1
},
@@ -24257,14 +24452,14 @@
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"Ot" = (
+"aOt" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 8
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"Ou" = (
+"aOu" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
@@ -24273,7 +24468,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Ov" = (
+"aOv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -24282,7 +24477,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Ow" = (
+"aOw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -24291,7 +24486,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"Ox" = (
+"aOx" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
@@ -24307,7 +24502,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"Oy" = (
+"aOy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -24320,7 +24515,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"Oz" = (
+"aOz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -24329,7 +24524,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"OA" = (
+"aOA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -24338,19 +24533,19 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"OB" = (
+"aOB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"OC" = (
+"aOC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"OD" = (
+"aOD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -24363,7 +24558,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"OE" = (
+"aOE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -24373,7 +24568,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"OF" = (
+"aOF" = (
/obj/structure/railing{
dir = 1
},
@@ -24382,7 +24577,7 @@
},
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside3)
-"OG" = (
+"aOG" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 22;
@@ -24394,7 +24589,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"OH" = (
+"aOH" = (
/obj/effect/floor_decal/borderfloorblack/corner{
icon_state = "borderfloorcorner_black";
dir = 4
@@ -24404,7 +24599,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"OI" = (
+"aOI" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 1
},
@@ -24413,23 +24608,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"OJ" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+"aOJ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
},
-/obj/effect/floor_decal/industrial/danger{
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
/obj/machinery/camera/network/tether{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
-"OK" = (
+/area/hallway/lower/third_south)
+"aOK" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 1
},
@@ -24439,7 +24632,7 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"OL" = (
+"aOL" = (
/obj/effect/floor_decal/borderfloorblack/corner{
icon_state = "borderfloorcorner_black";
dir = 1
@@ -24449,13 +24642,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"OM" = (
+"aOM" = (
/obj/structure/table/steel,
/obj/random/tech_supply,
/obj/random/tool,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"ON" = (
+"aON" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -24466,7 +24659,7 @@
/obj/item/stack/cable_coil/random,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"OO" = (
+"aOO" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
@@ -24477,23 +24670,20 @@
/obj/item/weapon/weldingtool,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"OP" = (
+"aOP" = (
/obj/machinery/light/small,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"OQ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
+"aOQ" = (
/obj/machinery/camera/network/tether{
- dir = 1
+ dir = 9
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/shuttle_pad)
-"OR" = (
+/turf/simulated/floor/tiled,
+/area/hallway/lower/third_south)
+"aOR" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_office)
-"OS" = (
+"aOS" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -24505,22 +24695,32 @@
/obj/structure/closet/radiation,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"OT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"OU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"aOT" = (
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aOU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/command,
/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"OV" = (
+/area/bridge_hallway)
+"aOV" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -24535,10 +24735,10 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"OW" = (
+"aOW" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"OX" = (
+"aOX" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 1
@@ -24551,7 +24751,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"OY" = (
+"aOY" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 1
@@ -24564,32 +24764,32 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"OZ" = (
+"aOZ" = (
/obj/machinery/newscaster,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Pa" = (
-/obj/structure/catwalk,
-/obj/machinery/camera/network/outside{
+"aPa" = (
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
dir = 4
},
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"Pb" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aPb" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/surfacebase/shuttle_pad)
-"Pc" = (
+"aPc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/hatch,
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"Pd" = (
+"aPd" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 8
@@ -24604,18 +24804,28 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_office)
-"Pe" = (
-/obj/structure/table/wooden_reinforced,
-/obj/item/weapon/paperplane,
-/turf/simulated/floor/wood,
-/area/rnd/outpost/xenobiology/outpost_office)
-"Pf" = (
+"aPe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aPf" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Pg" = (
+"aPg" = (
/obj/machinery/computer/area_atmos/tag{
pixel_y = 0;
scrub_id = "xeno_phoron_pen_scrubbers"
@@ -24625,19 +24835,31 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Ph" = (
+"aPh" = (
/obj/machinery/computer/security/xenobio,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Pi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+"aPi" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/white,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"Pj" = (
+/obj/effect/landmark/start{
+ name = "Colony Director"
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "cap_office";
+ name = "Security Shutters";
+ pixel_x = 30;
+ pixel_y = 16
+ },
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aPj" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -24659,22 +24881,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
-"Pk" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Pl" = (
+"aPk" = (
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aPl" = (
/obj/structure/table/woodentable,
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Pm" = (
+"aPm" = (
/obj/structure/table/woodentable,
/obj/item/weapon/storage/box/donkpockets,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Pn" = (
+"aPn" = (
/obj/structure/table/woodentable,
/obj/machinery/microwave,
/obj/machinery/light{
@@ -24682,7 +24904,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Po" = (
+"aPo" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 4
@@ -24697,16 +24919,14 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Pp" = (
-/obj/item/stack/material/plastic,
-/obj/structure/table/rack,
-/obj/item/stack/material/steel{
- amount = 3
+"aPp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/random/maintenance/engineering,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
-"Pq" = (
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aPq" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -24715,7 +24935,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"Pr" = (
+"aPr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -24724,20 +24944,20 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"Ps" = (
+"aPs" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"Pt" = (
+"aPt" = (
/obj/structure/frame/computer,
/obj/item/weapon/material/twohanded/baseballbat{
name = "Swatta"
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"Pu" = (
+"aPu" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -24746,7 +24966,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/shuttle_pad)
-"Pv" = (
+"aPv" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 8
@@ -24758,11 +24978,11 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_office)
-"Pw" = (
+"aPw" = (
/obj/structure/table/wooden_reinforced,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Px" = (
+"aPx" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -24778,13 +24998,13 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Py" = (
+"aPy" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Pz" = (
+"aPz" = (
/obj/effect/landmark/start{
name = "Xenobiologist"
},
@@ -24793,7 +25013,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"PA" = (
+"aPA" = (
/obj/structure/table/glass,
/obj/machinery/light_switch{
dir = 8;
@@ -24803,90 +25023,81 @@
/obj/item/weapon/storage/box/masks,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"PB" = (
+"aPB" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PC" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+"aPC" = (
+/obj/machinery/computer/communications{
+ dir = 1
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"PD" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
dir = 10
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aPD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 6
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24;
+ req_access = list()
},
/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"PE" = (
+/area/hallway/lower/third_south)
+"aPE" = (
/obj/item/device/radio/intercom{
dir = 8;
pixel_x = 10
},
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PF" = (
+"aPF" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"PG" = (
+"aPG" = (
/obj/random/mob/mouse,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PH" = (
+"aPH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PI" = (
+"aPI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PJ" = (
+"aPJ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PK" = (
+"aPK" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 4
@@ -24898,27 +25109,27 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PL" = (
+"aPL" = (
/obj/structure/table/rack,
/obj/random/maintenance/clean,
/obj/random/maintenance/engineering,
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"PM" = (
+"aPM" = (
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"PN" = (
+"aPN" = (
/obj/machinery/photocopier,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"PO" = (
+"aPO" = (
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"PP" = (
+"aPP" = (
/obj/structure/sign/department/xenolab,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_office)
-"PQ" = (
+"aPQ" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -24926,7 +25137,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"PR" = (
+"aPR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -24935,28 +25146,28 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"PS" = (
+"aPS" = (
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"PT" = (
+"aPT" = (
/obj/structure/sign/department/xenolab,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PU" = (
+"aPU" = (
/obj/machinery/vending/fitness,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PV" = (
+"aPV" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"PW" = (
+"aPW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
@@ -24967,35 +25178,35 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PX" = (
+"aPX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PY" = (
+"aPY" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"PZ" = (
+"aPZ" = (
/obj/structure/bed/chair,
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"Qa" = (
+"aQa" = (
/obj/structure/bed/chair,
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"Qb" = (
+"aQb" = (
/obj/machinery/papershredder,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qc" = (
+"aQc" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 22;
@@ -25003,25 +25214,13 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
+"aQd" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_main)
-"Qe" = (
+/turf/simulated/open,
+/area/tether/surfacebase/north_stairs_three)
+"aQe" = (
/obj/machinery/light_switch{
dir = 4;
pixel_x = -28
@@ -25035,44 +25234,38 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Qf" = (
-/obj/machinery/camera/network/research{
- dir = 8
+"aQf" = (
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 6
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_main)
-"Qg" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aQg" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qh" = (
+"aQh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qi" = (
+"aQi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qj" = (
+"aQj" = (
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qk" = (
+"aQk" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Ql" = (
+"aQl" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qm" = (
+"aQm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -25081,7 +25274,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qn" = (
+"aQn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -25097,7 +25290,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Qo" = (
+"aQo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -25114,7 +25307,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qp" = (
+"aQp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -25127,7 +25320,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Qq" = (
+"aQq" = (
/obj/machinery/door/airlock/research{
name = "Xenobiology Office";
req_access = list();
@@ -25149,7 +25342,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qr" = (
+"aQr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -25165,7 +25358,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Qs" = (
+"aQs" = (
/obj/machinery/door/airlock/glass_science{
name = "Break Room"
},
@@ -25185,7 +25378,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qt" = (
+"aQt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -25201,7 +25394,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qu" = (
+"aQu" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
@@ -25217,18 +25410,18 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qv" = (
+"aQv" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qw" = (
+"aQw" = (
/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Qx" = (
+"aQx" = (
/obj/structure/table/wooden_reinforced,
/obj/machinery/cell_charger,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -25236,13 +25429,13 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qy" = (
+"aQy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"Qz" = (
+"aQz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
@@ -25250,7 +25443,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QA" = (
+"aQA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -25267,7 +25460,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"QB" = (
+"aQB" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -25280,7 +25473,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"QC" = (
+"aQC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -25289,29 +25482,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"QD" = (
-/obj/structure/bed/chair/wood{
- dir = 4
+"aQD" = (
+/obj/structure/catwalk,
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 9
},
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QE" = (
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aQE" = (
/obj/structure/table/woodentable,
/obj/item/weapon/storage/box/donut,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QF" = (
+"aQF" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 8
},
@@ -25319,13 +25503,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"QG" = (
+"aQG" = (
/obj/structure/bed/chair/wood{
dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QH" = (
+"aQH" = (
/obj/structure/table/wooden_reinforced,
/obj/item/stack/material/phoron{
amount = 6
@@ -25339,7 +25523,7 @@
/obj/item/weapon/reagent_containers/syringe,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QI" = (
+"aQI" = (
/obj/structure/bed/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
@@ -25350,20 +25534,20 @@
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QJ" = (
+"aQJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QK" = (
+"aQK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QL" = (
+"aQL" = (
/obj/machinery/vending/coffee,
/obj/structure/cable/green{
icon_state = "1-2"
@@ -25375,10 +25559,10 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QM" = (
+"aQM" = (
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"QN" = (
+"aQN" = (
/obj/structure/bed/chair/wood{
dir = 4
},
@@ -25392,16 +25576,16 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QO" = (
+"aQO" = (
/obj/structure/table/woodentable,
/obj/random/plushie,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QP" = (
+"aQP" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QQ" = (
+"aQQ" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 8
@@ -25414,40 +25598,39 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_office)
-"QR" = (
-/obj/structure/bed/roller,
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
- },
+"aQR" = (
/obj/structure/table/glass,
-/obj/item/device/defib_kit,
-/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/bodybag,
+/obj/item/device/healthanalyzer,
+/obj/random/medical,
+/obj/structure/closet/medical_wall{
+ pixel_y = 35
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/firstaid/regular,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"QS" = (
+"aQS" = (
/obj/structure/table/wooden_reinforced,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QT" = (
+"aQT" = (
/obj/structure/flora/pottedplant/crystal,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"QU" = (
-/obj/structure/flora/pottedplant/unusual,
-/obj/machinery/camera/network/research{
- dir = 8
+"aQU" = (
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 9
},
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3;
- pixel_x = 26
- },
-/turf/simulated/floor/wood,
-/area/rnd/outpost/xenobiology/outpost_office)
-"QV" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aQV" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/apc;
dir = 8;
@@ -25458,13 +25641,14 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QW" = (
-/obj/structure/bed/chair/wood{
+"aQW" = (
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QX" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aQX" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/eastleft{
dir = 1
@@ -25484,12 +25668,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"QY" = (
+"aQY" = (
/obj/machinery/light,
/obj/machinery/media/jukebox,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"QZ" = (
+"aQZ" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 4
@@ -25502,10 +25686,10 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Ra" = (
+"aRa" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rb" = (
+"aRb" = (
/obj/machinery/door/airlock/research{
name = "Xenobiology Office";
req_access = list();
@@ -25514,7 +25698,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rc" = (
+"aRc" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
@@ -25532,17 +25716,17 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Rd" = (
+"aRd" = (
/obj/structure/cable/green{
icon_state = "1-8"
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"Re" = (
+"aRe" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_decon)
-"Rf" = (
+"aRf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Showers and Decontamination";
@@ -25550,7 +25734,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_decon)
-"Rg" = (
+"aRg" = (
/obj/machinery/optable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
@@ -25561,17 +25745,18 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rh" = (
-/obj/machinery/camera/network/research,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+"aRh" = (
+/obj/structure/catwalk,
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 5
},
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aRi" = (
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Ri" = (
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rj" = (
+"aRj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -25584,7 +25769,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rk" = (
+"aRk" = (
/obj/structure/table/standard,
/obj/item/toy/plushie/coffee_fox,
/obj/item/clothing/glasses/welding,
@@ -25598,21 +25783,22 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"Rl" = (
+"aRl" = (
/obj/machinery/newscaster,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rm" = (
-/obj/machinery/camera/network/research{
- dir = 4
+"aRm" = (
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_main)
-"Rn" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aRn" = (
/obj/machinery/newscaster,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_decon)
-"Ro" = (
+"aRo" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
@@ -25631,21 +25817,26 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Rp" = (
+"aRp" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
/obj/structure/closet/l3closet/scientist,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"Rq" = (
+"aRq" = (
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"Rr" = (
+"aRr" = (
/obj/structure/curtain/open/shower,
/obj/machinery/shower,
/obj/random/soap,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"Rs" = (
+"aRs" = (
/obj/structure/curtain/open/shower,
/obj/machinery/shower{
dir = 8;
@@ -25661,7 +25852,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"Rt" = (
+"aRt" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/syringes,
/obj/item/weapon/storage/box/monkeycubes,
@@ -25685,7 +25876,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"Ru" = (
+"aRu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -25695,7 +25886,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rv" = (
+"aRv" = (
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -25704,7 +25895,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rw" = (
+"aRw" = (
/obj/structure/table/standard,
/obj/item/weapon/extinguisher,
/obj/item/clothing/shoes/galoshes,
@@ -25712,7 +25903,7 @@
/obj/item/weapon/extinguisher,
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"Rx" = (
+"aRx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -25729,7 +25920,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Ry" = (
+"aRy" = (
/obj/machinery/door/airlock/research{
name = "Xenobiology Autopsy Room";
req_access = list();
@@ -25751,7 +25942,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"Rz" = (
+"aRz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -25767,7 +25958,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"RA" = (
+"aRA" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/beakers,
/obj/structure/extinguisher_cabinet{
@@ -25777,7 +25968,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"RB" = (
+"aRB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Showers and Decontamination"
@@ -25794,7 +25985,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RC" = (
+"aRC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
@@ -25808,7 +25999,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RD" = (
+"aRD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -25817,19 +26008,19 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RE" = (
+"aRE" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RF" = (
+"aRF" = (
/obj/structure/cable/green{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RG" = (
+"aRG" = (
/obj/item/device/radio/intercom{
dir = 4;
pixel_x = 24
@@ -25855,43 +26046,53 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"RH" = (
+"aRH" = (
/obj/structure/sink/kitchen{
name = "sink";
pixel_y = 32
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"RI" = (
+"aRI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"RJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+"aRJ" = (
+/obj/machinery/camera/network/outside{
+ icon_state = "camera";
+ dir = 1
},
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"RK" = (
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aRK" = (
/turf/simulated/wall,
/area/tether/surfacebase/medical/patient_c)
-"RL" = (
+"aRL" = (
/obj/machinery/washing_machine,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RM" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
+"aRM" = (
+/obj/structure/table/standard,
+/obj/item/toy/plushie/purple_fox,
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_decon)
-"RN" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/outpost/xenobiology/outpost_storage)
+"aRN" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 1
},
@@ -25899,11 +26100,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"RO" = (
+"aRO" = (
/obj/item/device/radio/intercom,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"RP" = (
+"aRP" = (
/obj/machinery/door/airlock/research{
name = "Xenobiology Autopsy Room";
req_access = list();
@@ -25912,18 +26113,18 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"RQ" = (
+"aRQ" = (
/obj/structure/sign/department/xenolab,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"RR" = (
+"aRR" = (
/obj/machinery/door/firedoor/glass/hidden{
icon_state = "door_open";
dir = 2
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"RS" = (
+"aRS" = (
/obj/machinery/door/firedoor/glass/hidden{
icon_state = "door_open";
dir = 2
@@ -25936,22 +26137,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"RT" = (
+"aRT" = (
/obj/structure/sign/department/xenolab,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RU" = (
+"aRU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Showers and Decontamination"
},
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RV" = (
+"aRV" = (
/obj/item/device/radio/intercom,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_decon)
-"RW" = (
+"aRW" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 1
@@ -25966,7 +26167,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_main)
-"RX" = (
+"aRX" = (
/obj/machinery/light{
dir = 1
},
@@ -25975,14 +26176,19 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"RY" = (
-/obj/machinery/camera/network/research,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"aRY" = (
+/obj/structure/bed/roller,
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
},
-/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_main)
-"RZ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_first_aid)
+"aRZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -25991,7 +26197,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sa" = (
+"aSa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26007,7 +26213,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sb" = (
+"aSb" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized/full{
@@ -26015,7 +26221,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/patient_c)
-"Sc" = (
+"aSc" = (
/obj/machinery/door/firedoor/glass/hidden,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -26026,17 +26232,17 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"aSd" = (
+/obj/machinery/door/firedoor/glass/hidden,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Se" = (
+"aSe" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -26046,7 +26252,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sf" = (
+"aSf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -26055,15 +26261,24 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sg" = (
-/obj/machinery/camera/network/research,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
+"aSg" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sh" = (
+"aSh" = (
/obj/machinery/light{
dir = 1
},
@@ -26075,7 +26290,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Si" = (
+"aSi" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 1
@@ -26090,7 +26305,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sj" = (
+"aSj" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic,
/obj/structure/window/basic{
@@ -26103,7 +26318,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sk" = (
+"aSk" = (
/obj/structure/bed/chair,
/obj/machinery/alarm{
pixel_y = 22
@@ -26123,14 +26338,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_c)
-"Sl" = (
+"aSl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sm" = (
+"aSm" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
@@ -26159,7 +26374,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_c)
-"Sn" = (
+"aSn" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -26183,7 +26398,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_c)
-"So" = (
+"aSo" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized/full{
@@ -26194,7 +26409,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/patient_c)
-"Sp" = (
+"aSp" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 8
},
@@ -26207,7 +26422,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"Sq" = (
+"aSq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -26230,7 +26445,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"Sr" = (
+"aSr" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
@@ -26260,20 +26475,28 @@
},
/turf/simulated/open,
/area/rnd/outpost/xenobiology/outpost_stairs)
-"Ss" = (
+"aSs" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_x = 30;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"St" = (
+"aSt" = (
/obj/machinery/door/firedoor/glass/hidden,
/obj/structure/cable/green{
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Su" = (
+"aSu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -26292,13 +26515,13 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_c)
-"Sv" = (
+"aSv" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sw" = (
+"aSw" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -26308,20 +26531,20 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sx" = (
+"aSx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sy" = (
+"aSy" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
-"Sz" = (
+"aSz" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic,
/obj/structure/window/basic{
@@ -26334,77 +26557,40 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_main)
-"SA" = (
+"aSA" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"SB" = (
+"aSB" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/steel,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"SC" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"SD" = (
+"aSD" = (
/obj/structure/sign/redcross,
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"SE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- dir = 1;
- on = 0;
- pixel_x = -14;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_c)
-"SF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"aSE" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass_command{
- name = "Secondary Control Room"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ alarm_id = "anomaly_testing";
+ breach_detection = 0;
+ dir = 8;
+ frequency = 1439;
+ pixel_x = 22;
+ pixel_y = 0;
+ report_danger_level = 0
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/secondary)
-"SG" = (
+/area/bridge_hallway)
+"aSG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -26423,30 +26609,16 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_c)
-"SH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"SI" = (
+"aSI" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_storage)
-"SJ" = (
+"aSJ" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"SK" = (
+"aSK" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -26467,7 +26639,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_c)
-"SL" = (
+"aSL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -26477,7 +26649,7 @@
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"SM" = (
+"aSM" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 5
},
@@ -26489,7 +26661,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"SN" = (
+"aSN" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 5
},
@@ -26501,7 +26673,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"SO" = (
+"aSO" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -26544,16 +26716,16 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"SP" = (
+"aSP" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/medical/chemistry)
-"SQ" = (
+"aSQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"SR" = (
+"aSR" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -26567,7 +26739,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"SS" = (
+"aSS" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -26585,7 +26757,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"ST" = (
+"aST" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -26599,7 +26771,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"SU" = (
+"aSU" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
@@ -26622,7 +26794,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"SV" = (
+"aSV" = (
/obj/machinery/door/airlock/glass_medical{
name = "Chemistry";
req_access = list();
@@ -26642,14 +26814,14 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"SW" = (
+"aSW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"SX" = (
+"aSX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -26662,13 +26834,13 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"SY" = (
+"aSY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"SZ" = (
+"aSZ" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
},
@@ -26695,7 +26867,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Ta" = (
+"aTa" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -26707,7 +26879,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"Tb" = (
+"aTb" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -26748,7 +26920,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Tc" = (
+"aTc" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -26766,7 +26938,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Td" = (
+"aTd" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
@@ -26790,59 +26962,33 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Te" = (
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_first_aid)
-"Tf" = (
+"aTf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"Tg" = (
+"aTg" = (
/turf/simulated/wall,
/area/maintenance/lower/mining)
-"Th" = (
-/obj/structure/table/standard,
-/obj/item/device/lightreplacer,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/rnd/outpost/xenobiology/outpost_storage)
-"Ti" = (
+"aTi" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"Tj" = (
+"aTj" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"Tk" = (
+"aTk" = (
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"Tl" = (
+"aTl" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -26857,11 +27003,11 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"Tm" = (
+"aTm" = (
/obj/machinery/smartfridge/chemistry/chemvator,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Tn" = (
+"aTn" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -26876,11 +27022,11 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"To" = (
+"aTo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Tp" = (
+"aTp" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -26889,7 +27035,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Tq" = (
+"aTq" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -26913,7 +27059,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Tr" = (
+"aTr" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
@@ -26927,51 +27073,14 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"Ts" = (
+"aTs" = (
/obj/random/maintenance/clean,
/obj/random/maintenance/clean,
/obj/random/contraband,
/obj/structure/closet,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining)
-"Tt" = (
-/obj/structure/table/standard,
-/obj/item/toy/plushie/purple_fox,
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3;
- pixel_x = 26
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 28
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/weapon/reagent_containers/spray,
-/obj/item/weapon/reagent_containers/spray,
-/turf/simulated/floor/tiled/techmaint,
-/area/rnd/outpost/xenobiology/outpost_storage)
-"Tu" = (
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 0;
- pixel_y = -28
- },
-/turf/simulated/floor/tiled,
-/area/rnd/outpost/xenobiology/outpost_breakroom)
-"Tv" = (
-/obj/structure/table/standard,
-/obj/item/device/slime_scanner,
-/obj/item/device/slime_scanner,
-/obj/item/device/multitool,
-/turf/simulated/floor/tiled/techmaint,
-/area/rnd/outpost/xenobiology/outpost_storage)
-"Tw" = (
+"aTw" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -26986,221 +27095,22 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"Tx" = (
+"aTx" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/basic,
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"Ty" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"Tz" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TA" = (
+"aTA" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"TB" = (
+"aTB" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
-"TC" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/bordercorner{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TD" = (
-/obj/machinery/button/windowtint{
- id = "secondary_bridge";
- pixel_x = 4;
- pixel_y = 26
- },
-/obj/structure/table/reinforced,
-/obj/machinery/button/remote/blast_door{
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blastdoors";
- pixel_x = -6;
- pixel_y = 28
- },
-/obj/machinery/recharger,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TE" = (
-/obj/structure/table/reinforced,
-/obj/item/device/radio{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/device/radio{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TF" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TG" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TH" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/camera/network/command,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4;
- icon_state = "borderfloorcorner2";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TI" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TJ" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TK" = (
+"aTK" = (
/obj/structure/table/glass,
/obj/machinery/light{
icon_state = "tube1";
@@ -27216,310 +27126,10 @@
/obj/item/device/flashlight/lamp/green,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"TL" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TM" = (
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TO" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TP" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/papershredder,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TQ" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TR" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TX" = (
+"aTX" = (
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"TY" = (
-/obj/machinery/computer/card{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"TZ" = (
-/obj/machinery/computer/secure_data{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/blue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Ua" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/computer/skills{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/blue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Ub" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/blue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Uc" = (
-/obj/structure/filingcabinet/filingcabinet,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/blue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Ud" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ue" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/blue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Uf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Ug" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/blue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/blue/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Uh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/blue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Ui" = (
+"aUi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -27532,279 +27142,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"Uj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Uk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ul" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Um" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Un" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secondary_bridge"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 8;
- icon_state = "pdoor0";
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"Uo" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secondary_bridge"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 8;
- icon_state = "pdoor0";
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"Up" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/green,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secondary_bridge"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 8;
- icon_state = "pdoor0";
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"Uq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 8;
- icon_state = "pdoor0";
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/command{
- name = "Secondary Command Office"
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"Ur" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/green,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secondary_bridge"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 8;
- icon_state = "pdoor0";
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"Us" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secondary_bridge"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 8;
- icon_state = "pdoor0";
- id = "secondary_bridge_blast";
- name = "Secondary Command Office Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/bridge/secondary)
-"Ut" = (
-/obj/machinery/camera/network/tether,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Uu" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Uv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4;
- icon_state = "borderfloorcorner2";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Uw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ux" = (
+"aUx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -27824,7 +27162,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"Uy" = (
+"aUy" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -27854,24 +27192,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/tether/surfacebase/security/lobby)
-"Uz" = (
-/obj/structure/table/glass,
-/obj/item/roller,
-/obj/item/roller{
- pixel_y = 8
- },
-/obj/item/roller{
- pixel_y = 16
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"UA" = (
+"aUA" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/filingcabinet/chestdrawer{
@@ -27879,25 +27200,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"UB" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 9
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the medbay foyer.";
- id = "SurfMedbayFoyer";
- name = "Medbay Doors Control";
- pixel_x = 4;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"UC" = (
+"aUC" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -27911,7 +27214,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UD" = (
+"aUD" = (
/obj/structure/table/reinforced,
/obj/item/weapon/reagent_containers/glass/beaker/large,
/obj/item/weapon/reagent_containers/dropper,
@@ -27920,7 +27223,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UE" = (
+"aUE" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -27933,7 +27236,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UF" = (
+"aUF" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -27946,15 +27249,15 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UG" = (
+"aUG" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/mining)
-"UH" = (
+"aUH" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining)
-"UI" = (
+"aUI" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
@@ -27970,7 +27273,7 @@
dir = 4
},
/area/tether/surfacebase/medical/triage)
-"UJ" = (
+"aUJ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -27984,7 +27287,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UK" = (
+"aUK" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -27993,7 +27296,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UL" = (
+"aUL" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -28005,31 +27308,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UM" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/reagentgrinder,
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"UN" = (
+"aUN" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -26
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining)
-"UO" = (
+"aUO" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -28052,7 +27338,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/frontdesk)
-"UP" = (
+"aUP" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -28062,10 +27348,10 @@
/obj/machinery/chemical_dispenser/full,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UQ" = (
+"aUQ" = (
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UR" = (
+"aUR" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -28074,7 +27360,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"US" = (
+"aUS" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -28091,7 +27377,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UT" = (
+"aUT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28112,7 +27398,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"UU" = (
+"aUU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -28124,7 +27410,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/lobby)
-"UV" = (
+"aUV" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -28134,7 +27420,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"UW" = (
+"aUW" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -28146,7 +27432,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"UX" = (
+"aUX" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/window/eastright{
@@ -28169,7 +27455,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UY" = (
+"aUY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28181,14 +27467,14 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"UZ" = (
+"aUZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Va" = (
+"aVa" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -28200,17 +27486,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Vb" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/chemical_dispenser/full,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"Vc" = (
+"aVc" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -28218,7 +27494,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining)
-"Vd" = (
+"aVd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28244,7 +27520,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"Ve" = (
+"aVe" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/cups,
/obj/item/weapon/storage/box/cups,
@@ -28256,7 +27532,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"Vf" = (
+"aVf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -28268,7 +27544,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/chemistry)
-"Vg" = (
+"aVg" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -28285,7 +27561,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Vh" = (
+"aVh" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/extinguisher_cabinet{
@@ -28295,7 +27571,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Vi" = (
+"aVi" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/bed/chair/office/dark{
@@ -28312,7 +27588,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Vj" = (
+"aVj" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
},
@@ -28323,11 +27599,11 @@
/obj/machinery/light,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"Vk" = (
+"aVk" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"Vl" = (
+"aVl" = (
/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -28343,11 +27619,11 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"Vm" = (
+"aVm" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/medical/chemistry)
-"Vn" = (
+"aVn" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -28359,7 +27635,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"Vo" = (
+"aVo" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
},
@@ -28374,7 +27650,7 @@
/obj/structure/reagent_dispensers/water_cooler/full,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"Vp" = (
+"aVp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -28383,7 +27659,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"Vq" = (
+"aVq" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/lightgrey{
dir = 6
@@ -28392,8 +27668,8 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Vr" = (
+/area/tether/surfacebase/surface_three_hall)
+"aVr" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 9
},
@@ -28402,12 +27678,12 @@
},
/obj/structure/table/standard,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Vs" = (
+/area/tether/surfacebase/surface_three_hall)
+"aVs" = (
/obj/structure/lattice,
/turf/simulated/open,
/area/maintenance/lower/mining)
-"Vt" = (
+"aVt" = (
/obj/machinery/door/airlock/multi_tile/glass{
name = "Infirmary Lobby"
},
@@ -28419,7 +27695,7 @@
dir = 8
},
/area/tether/surfacebase/medical/lobby)
-"Vu" = (
+"aVu" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 9
},
@@ -28428,8 +27704,8 @@
},
/obj/structure/table/bench/standard,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Vv" = (
+/area/tether/surfacebase/surface_three_hall)
+"aVv" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -28452,13 +27728,13 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"Vw" = (
+"aVw" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"Vx" = (
+"aVx" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -28467,7 +27743,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"Vy" = (
+"aVy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/junction{
@@ -28487,7 +27763,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"Vz" = (
+"aVz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -28510,7 +27786,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VA" = (
+"aVA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -28533,7 +27809,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VB" = (
+"aVB" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -28554,7 +27830,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VC" = (
+"aVC" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
icon_state = "borderfloor";
@@ -28568,7 +27844,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VD" = (
+"aVD" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -28585,7 +27861,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VE" = (
+"aVE" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -28596,7 +27872,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"VF" = (
+"aVF" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -28609,20 +27885,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"VG" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge/secondary)
-"VH" = (
+"aVH" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -28637,11 +27900,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"VI" = (
+"aVI" = (
/obj/effect/floor_decal/borderfloor,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"VJ" = (
+"aVJ" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
d1 = 2;
@@ -28655,17 +27918,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/common)
-"VK" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"VL" = (
+"aVL" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/obj/machinery/light,
@@ -28687,7 +27940,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"VM" = (
+"aVM" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -28711,7 +27964,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"VN" = (
+"aVN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -28729,7 +27982,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/lobby)
-"VO" = (
+"aVO" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -28756,7 +28009,7 @@
/obj/structure/flora/pottedplant/stoutbush,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VP" = (
+"aVP" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/obj/machinery/alarm{
@@ -28774,24 +28027,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VQ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
-"VR" = (
+"aVR" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/obj/effect/floor_decal/borderfloor/corner2{
@@ -28816,7 +28052,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VS" = (
+"aVS" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
@@ -28828,15 +28064,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VT" = (
+"aVT" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VU" = (
+"aVU" = (
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"VV" = (
+"aVV" = (
/obj/effect/floor_decal/techfloor/corner{
dir = 8
},
@@ -28851,7 +28087,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"VW" = (
+"aVW" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -28868,7 +28104,7 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"VX" = (
+"aVX" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -28876,8 +28112,8 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/atrium_three)
-"VY" = (
+/area/tether/surfacebase/surface_three_hall)
+"aVY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -28902,7 +28138,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/common)
-"VZ" = (
+"aVZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -28928,7 +28164,7 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/common)
-"Wa" = (
+"aWa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -28954,13 +28190,13 @@
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/common)
-"Wb" = (
+"aWb" = (
/obj/structure/sign/directions/evac{
dir = 4
},
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/lobby)
-"Wc" = (
+"aWc" = (
/obj/machinery/door/airlock/multi_tile/glass{
name = "Security Lobby"
},
@@ -28982,7 +28218,7 @@
dir = 8
},
/area/tether/surfacebase/security/lobby)
-"Wd" = (
+"aWd" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
@@ -29000,24 +28236,24 @@
dir = 4
},
/area/tether/surfacebase/security/lobby)
-"We" = (
+"aWe" = (
/obj/structure/sign/directions/evac,
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/lobby)
-"Wf" = (
+"aWf" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/vacant/vacant_site2)
-"Wg" = (
+"aWg" = (
/obj/structure/sign/directions/evac{
dir = 8
},
/turf/simulated/wall,
/area/tether/surfacebase/medical/lobby)
-"Wh" = (
+"aWh" = (
/obj/structure/sign/directions/medical{
dir = 4;
pixel_y = 8
@@ -29036,7 +28272,7 @@
},
/turf/simulated/wall,
/area/tether/surfacebase/medical/lobby)
-"Wi" = (
+"aWi" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29052,49 +28288,8 @@
pixel_y = 30
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/atm{
- pixel_y = 31
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wl" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWl" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29115,8 +28310,8 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wm" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWm" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29130,8 +28325,8 @@
/obj/machinery/door/airlock/glass,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wn" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWn" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29143,8 +28338,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wo" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWo" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29159,8 +28354,8 @@
pixel_y = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wp" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWp" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -29175,8 +28370,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wq" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWq" = (
/obj/machinery/firealarm{
dir = 2;
layer = 3.3;
@@ -29194,22 +28389,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/camera/network/tether,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ws" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWs" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29227,8 +28408,8 @@
pixel_y = 26
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wt" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWt" = (
/obj/effect/floor_decal/corner/red{
dir = 1
},
@@ -29247,8 +28428,8 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wu" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWu" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29268,16 +28449,16 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wv" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Ww" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWw" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29298,8 +28479,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wx" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWx" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29311,8 +28492,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"Wy" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWy" = (
/obj/machinery/sleeper{
dir = 8
},
@@ -29325,7 +28506,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"Wz" = (
+"aWz" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29340,8 +28521,8 @@
pixel_y = 31
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WA" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/borderfloor{
@@ -29355,8 +28536,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WB" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWB" = (
/obj/machinery/light{
dir = 1
},
@@ -29371,8 +28552,8 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WC" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWC" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29387,14 +28568,14 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WD" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WE" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -29402,8 +28583,8 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WF" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -29411,8 +28592,8 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WG" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -29422,15 +28603,15 @@
/obj/machinery/door/airlock/glass,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WH" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WI" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -29440,13 +28621,13 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WJ" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WK" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -29462,8 +28643,8 @@
name = "lightsout"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WL" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
@@ -29473,20 +28654,21 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WM" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WN" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWN" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -29501,8 +28683,8 @@
pixel_y = -25
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WO" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWO" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -29513,21 +28695,21 @@
},
/obj/machinery/light,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WP" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"WQ" = (
+"aWQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"WR" = (
+"aWR" = (
/obj/structure/table/standard,
/obj/item/weapon/gun/energy/taser/xeno,
/obj/item/weapon/melee/baton/slime/loaded,
@@ -29538,7 +28720,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"WS" = (
+"aWS" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -29550,8 +28732,8 @@
/obj/machinery/door/airlock/glass,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WT" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWT" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
@@ -29561,8 +28743,8 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WU" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWU" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -29575,8 +28757,8 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WV" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWV" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lightgrey/bordercorner,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -29586,8 +28768,8 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/atrium_three)
-"WW" = (
+/area/tether/surfacebase/surface_three_hall)
+"aWW" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -29613,13 +28795,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"WX" = (
+"aWX" = (
/obj/structure/cable/green{
icon_state = "2-4"
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/security/lobby)
-"WY" = (
+"aWY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -29631,7 +28813,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"WZ" = (
+"aWZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
icon_state = "2-4"
@@ -29643,7 +28825,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"Xa" = (
+"aXa" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -29662,7 +28844,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
-"Xb" = (
+"aXb" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/wardrobe/red,
/obj/item/device/radio/intercom/department/security{
@@ -29673,7 +28855,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/armory)
-"Xc" = (
+"aXc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -29683,13 +28865,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/common)
-"Xd" = (
+"aXd" = (
/obj/random/maintenance/security,
/obj/random/mre/dessert,
/obj/item/toy/bosunwhistle,
/turf/simulated/floor/plating,
/area/vacant/vacant_site2)
-"Xe" = (
+"aXe" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -29709,13 +28891,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xf" = (
+"aXf" = (
/obj/structure/bookcase{
name = "bookcase (Adult)"
},
/turf/simulated/floor/wood,
/area/library)
-"Xg" = (
+"aXg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -29724,7 +28906,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Xh" = (
+"aXh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -29733,7 +28915,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Xi" = (
+"aXi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -29743,7 +28925,7 @@
/obj/machinery/light/small,
/turf/simulated/floor/wood,
/area/library)
-"Xj" = (
+"aXj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -29752,7 +28934,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Xk" = (
+"aXk" = (
/obj/structure/sign/directions/medical{
dir = 1;
icon_state = "direction_med";
@@ -29774,7 +28956,7 @@
},
/turf/simulated/wall,
/area/library)
-"Xl" = (
+"aXl" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 4
@@ -29788,7 +28970,7 @@
dir = 4
},
/area/library)
-"Xm" = (
+"aXm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29811,7 +28993,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xo" = (
+"aXo" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -29825,18 +29007,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"Xp" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Xq" = (
+"aXq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29859,7 +29030,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xr" = (
+"aXr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29870,7 +29041,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xs" = (
+"aXs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29884,7 +29055,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xt" = (
+"aXt" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -29911,7 +29082,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xu" = (
+"aXu" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -29921,7 +29092,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xv" = (
+"aXv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -29938,20 +29109,20 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"Xw" = (
+"aXw" = (
/obj/item/device/radio/intercom{
pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/wood,
/area/library)
-"Xx" = (
+"aXx" = (
/obj/structure/closet/hydrant{
pixel_x = 32
},
/turf/simulated/floor/wood,
/area/library)
-"Xy" = (
+"aXy" = (
/obj/structure/table/standard,
/obj/item/weapon/gun/energy/taser/xeno,
/obj/machinery/recharger/wallcharger{
@@ -29961,7 +29132,7 @@
/obj/item/weapon/melee/baton/slime/loaded,
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"Xz" = (
+"aXz" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -29977,7 +29148,7 @@
/obj/machinery/disposal,
/turf/simulated/floor/wood,
/area/rnd/outpost/xenobiology/outpost_office)
-"XA" = (
+"aXA" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -29989,20 +29160,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"XB" = (
-/obj/machinery/papershredder,
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"XC" = (
+"aXC" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -30016,13 +29174,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"XD" = (
-/obj/machinery/camera/network/outside{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/outside/outside3)
-"XE" = (
+"aXE" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 26
@@ -30034,7 +29186,7 @@
},
/turf/simulated/floor/wood,
/area/library)
-"XF" = (
+"aXF" = (
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -30043,7 +29195,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"XG" = (
+"aXG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -30053,7 +29205,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XH" = (
+"aXH" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -30065,7 +29217,7 @@
/obj/item/weapon/implantcase/chem,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XI" = (
+"aXI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -30076,7 +29228,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XJ" = (
+"aXJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -30084,7 +29236,7 @@
/obj/item/weapon/locator,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XK" = (
+"aXK" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
d1 = 1;
@@ -30106,7 +29258,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"XL" = (
+"aXL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -30115,7 +29267,7 @@
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XM" = (
+"aXM" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -30133,13 +29285,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"XN" = (
+"aXN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XO" = (
+"aXO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/obj/structure/disposalpipe/segment{
@@ -30148,18 +29300,18 @@
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XP" = (
+"aXP" = (
/obj/structure/disposalpipe/up{
dir = 8
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XQ" = (
+"aXQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XR" = (
+"aXR" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -30172,7 +29324,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"XS" = (
+"aXS" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -30191,7 +29343,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"XT" = (
+"aXT" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -30205,7 +29357,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"XU" = (
+"aXU" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -30236,7 +29388,62 @@
/obj/machinery/disposal,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"XZ" = (
+"aXV" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/device/radio{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/device/radio,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aXW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aXX" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aXY" = (
+/obj/item/device/aicard,
+/obj/item/weapon/storage/box/PDAs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/ids,
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aXZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -30249,7 +29456,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"Ya" = (
+"aYa" = (
/obj/structure/closet,
/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,
/obj/random/maintenance/clean,
@@ -30258,7 +29465,31 @@
/obj/random/maintenance/clean,
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"Yd" = (
+"aYb" = (
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "cap_office";
+ layer = 3.1;
+ name = "Colony Directo's Shutters"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/captain)
+"aYd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -30274,7 +29505,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"Ye" = (
+"aYe" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -30286,7 +29517,48 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"Yk" = (
+"aYf" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYg" = (
+/obj/machinery/computer/card{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ icon_state = "extinguisher_closed";
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYi" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donut,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -30306,7 +29578,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/vacant/vacant_shop)
-"Yl" = (
+"aYl" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/down,
/obj/structure/cable/green{
@@ -30325,19895 +29597,21691 @@
},
/turf/simulated/open,
/area/vacant/vacant_shop)
-"Zf" = (
+"aYm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYn" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aYo" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYq" = (
+/obj/structure/dogbed,
+/mob/living/simple_mob/animal/passive/dog/corgi/Ian,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aYr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYs" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Bridge"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_x = 8;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "bridge blast";
+ name = "Bridge Blastdoors";
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYw" = (
+/obj/machinery/photocopier,
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ icon_state = "extinguisher_closed";
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYx" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYy" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYz" = (
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYA" = (
+/obj/machinery/computer/supplycomp{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYB" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYC" = (
+/obj/machinery/computer/station_alert{
+ icon_state = "computer";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYD" = (
+/obj/machinery/computer/power_monitor{
+ icon_state = "computer";
+ dir = 8;
+ throwpass = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYE" = (
+/obj/effect/floor_decal/corner/paleblue/full,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYF" = (
+/obj/machinery/computer/med_data{
+ icon_state = "computer";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYG" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYH" = (
+/obj/effect/floor_decal/corner/blue/full,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYI" = (
+/obj/structure/bed/chair/office/dark,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYJ" = (
+/obj/effect/floor_decal/corner/blue/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYK" = (
+/obj/effect/floor_decal/corner/yellow/full,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYL" = (
+/obj/machinery/computer/rcon{
+ icon_state = "computer";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYM" = (
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aYO" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/commandmaint)
+"aYP" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYQ" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYR" = (
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYT" = (
+/turf/simulated/open,
+/area/bridge_hallway)
+"aYU" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/bridge_hallway)
+"aYV" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aYW" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aYX" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aYZ" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aZa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aZb" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/stamp/hop,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -10
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aZc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aZe" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aZf" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"ZK" = (
+"aZh" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aZi" = (
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ icon_state = "down-supply";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ icon_state = "down-scrubbers";
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 4;
+ icon_state = "32-4"
+ },
+/turf/simulated/open,
+/area/maintenance/commandmaint)
+"aZj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZk" = (
+/obj/structure/closet/wardrobe/captain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZm" = (
+/obj/item/clothing/glasses/omnihud/all,
+/obj/structure/closet/secure_closet/captains,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_y = 32
+ },
+/obj/machinery/recharger{
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZo" = (
+/obj/structure/table/reinforced,
+/obj/item/device/megaphone,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aZp" = (
+/obj/structure/closet/secure_closet/hop,
+/obj/item/clothing/glasses/omnihud,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZq" = (
+/obj/structure/closet/secure_closet/hop2,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aZt" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aZu" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/flame/candle,
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aZv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = list(57)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/hop)
+"aZw" = (
+/obj/item/weapon/bedsheet/captain,
+/obj/structure/bed/padded,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZy" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZz" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aZA" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aZB" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aZC" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZD" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "hop_office"
+ },
+/obj/structure/window/reinforced/polarized{
+ icon_state = "rwindow";
+ dir = 4;
+ id = "iaa_office"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-1";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/hop)
+"aZE" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZF" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/structure/window/basic,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "cap_office";
+ layer = 3.1;
+ name = "Colony Directo's Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/captain)
+"aZH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "cap_office";
+ layer = 3.1;
+ name = "Colony Directo's Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/captain)
+"aZI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aZJ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/photo_album{
+ pixel_y = -10
+ },
+/obj/item/weapon/reagent_containers/food/drinks/flask{
+ pixel_x = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZK" = (
/obj/machinery/sleep_console,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
+"aZL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZM" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -8;
+ pixel_y = -26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Personnel's Office"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aZO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"aZP" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen/multi,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"aZQ" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "hop_office"
+ },
+/obj/structure/window/reinforced/polarized{
+ icon_state = "rwindow";
+ dir = 4;
+ id = "iaa_office"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "0-1";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/hop)
+"aZR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aZT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZU" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/skills{
+ icon_state = "laptop";
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZV" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/melee/chainofcommand,
+/obj/item/weapon/coin/phoron{
+ desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo.";
+ name = "limited edition phoron coin"
+ },
+/obj/item/weapon/folder/blue_captain,
+/obj/item/weapon/stamp/captain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZW" = (
+/obj/machinery/door/airlock/command{
+ name = "Colony Director's Quarters";
+ req_access = list(20)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"aZY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aZZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bab" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -30
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bac" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"bad" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"bae" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"baf" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/suit/armor/captain,
+/obj/item/clothing/head/helmet/space/capspace,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/card/id/gold/captain/spare,
+/obj/machinery/door/window/brigdoor/westright{
+ dir = 4;
+ name = "Colony Director's Storage";
+ req_access = list(20)
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bag" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bai" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"baj" = (
+/obj/structure/displaycase,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bak" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"bal" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bam" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"ban" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bao" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/button/windowtint{
+ id = "hop_office";
+ layer = 3.3;
+ pixel_x = 3;
+ pixel_y = -29
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "hop_office_desk";
+ layer = 3.3;
+ name = "Desk Privacy Shutter";
+ pixel_x = 10;
+ pixel_y = -29
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bap" = (
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"baq" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/bridge)
+"bar" = (
+/obj/machinery/computer/communications,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bas" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/blue,
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bat" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bau" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Captain's Office"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bav" = (
+/obj/machinery/photocopier,
+/obj/machinery/firealarm{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"baw" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/bridge)
+"bax" = (
+/obj/machinery/account_database,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bay" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/bridge)
+"baz" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baA" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/bridge)
+"baB" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ name = "Command Meeting Room";
+ sortType = "Command Meeting Room"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"baE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baG" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"baH" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baI" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"baL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baM" = (
+/obj/structure/table/woodentable,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/device/perfect_tele{
+ desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Colony Director's, and they are authorized to use it.";
+ name = "director's translocator"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"baN" = (
+/obj/machinery/papershredder,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"baQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baR" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baT" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"baU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"baV" = (
+/obj/machinery/computer/card,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"baX" = (
+/obj/machinery/firealarm{
+ pixel_x = -30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bba" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bbb" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/command_guide,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bbc" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bbi" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bbj" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bbp" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bbq" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbs" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbt" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbu" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbv" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbw" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bbx" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/blue_hop,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -8;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"bby" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbB" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "HoP Office";
+ sortType = "HoP Office"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbC" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bbD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bbE" = (
+/obj/structure/dogbed,
+/obj/structure/curtain/open/bed,
+/mob/living/simple_mob/animal/passive/fox/renault,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bbF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ icon_state = "bordercolor";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bbH" = (
+/obj/machinery/alarm{
+ alarm_id = "pen_nine";
+ breach_detection = 0;
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bcY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bdD" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 2;
+ icon_state = "extinguisher_closed";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bdX" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
"}
(2,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(3,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(4,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(5,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(6,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(7,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(8,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(9,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(10,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(11,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(12,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(13,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(14,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(15,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(16,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(17,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(18,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(19,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(20,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(21,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(22,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-dG
-dG
-dG
-dG
-dG
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+adG
+adG
+adG
+adG
+adG
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(23,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dG
-dG
-dG
-dG
-dG
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adG
+adG
+adG
+adG
+adG
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(24,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dH
-el
-eX
-eX
-gt
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adH
+ael
+aeX
+aeX
+agt
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(25,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dI
-em
-ab
-ab
-gu
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adI
+aem
+aab
+aab
+agu
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(26,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dJ
-en
-eY
-eY
-gv
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adJ
+aen
+aeY
+aeY
+agv
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(27,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(28,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Ff
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aFf
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(29,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Ff
-Fh
-Ff
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aFf
+aFh
+aFf
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(30,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Ff
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-MG
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aFf
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(31,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-dG
-Np
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-Np
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+aQD
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+aQD
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(32,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-fF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-dG
-OR
-Pd
-Pv
-Pv
-Pv
-Pv
-Pv
-Pv
-QQ
-Ra
-Ra
-Ra
-Ra
-Ra
-RW
-Sj
-SA
-SA
-SA
-SA
-SA
-Ob
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+adG
+aOR
+aPd
+aPv
+aPv
+aPv
+aPv
+aPv
+aPv
+aQQ
+aRa
+aRa
+aRa
+aRa
+aRa
+aRW
+aSj
+aSA
+aSA
+aSA
+aSA
+aSA
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(33,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-rW
-Dq
-Dq
-rW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-dG
-OR
-Pe
-Pw
-PN
-Qb
-Ql
-Qx
-QH
-Mn
-Ra
-OV
-Pf
-Nd
-Ra
-RX
-PF
-SA
-MJ
-Ta
-QR
-SA
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+arW
+aDq
+aDq
+arW
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+adG
+aOR
+aAt
+aPw
+aPN
+aQb
+aQl
+aQx
+aQH
+aMn
+aRa
+aOV
+aPf
+aNd
+aRa
+aRX
+aPF
+aSA
+aQR
+aTa
+aRY
+aSA
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(34,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-CZ
-rW
-Da
-Da
-rW
-DQ
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-dG
-OR
-BT
-Px
-PO
-PO
-PO
-Qy
-QI
-QS
-Ra
-Rh
-Ru
-RI
-RO
-RY
-Sl
-SD
-SQ
-Tf
-Zf
-Tx
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aCZ
+arW
+aDa
+aDa
+arW
+aDQ
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+adG
+aOR
+aBT
+aPx
+aPO
+aPO
+aPO
+aQy
+aQI
+aQS
+aRa
+aBu
+aRu
+aRI
+aRO
+aSx
+aSl
+aSD
+aSQ
+aTf
+aZf
+aTx
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(35,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-CZ
-Dc
-Di
-De
-De
-iF
-Dc
-DQ
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-MG
-MG
-On
-dG
-OR
-Pg
-Py
-PO
-TA
-PO
-Qy
-QJ
-PO
-Rb
-Ri
-Rg
-Ri
-RP
-RZ
-Jy
-Kz
-Li
-Wy
-XF
-SA
-dG
-Os
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aCZ
+aDc
+aDi
+aDe
+aDe
+aiF
+aDc
+aDQ
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aMG
+aMG
+aOn
+adG
+aOR
+aPg
+aPy
+aPO
+aTA
+aPO
+aQy
+aQJ
+aPO
+aRb
+aRi
+aRg
+aRi
+aRP
+aRZ
+aJy
+aKz
+aLi
+aWy
+aXF
+aSA
+adG
+aOs
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(36,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-CZ
-Dc
-Df
-De
-Dj
-DA
-De
-Df
-Dc
-DQ
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-MG
-MG
-MG
-MG
-MG
-MG
-NU
-dG
-dG
-dG
-dG
-OR
-Ph
-Pz
-PO
-PO
-Qm
-Qz
-QK
-QT
-Ra
-RH
-Rj
-Rv
-Ra
-Sa
-Jz
-KA
-Lk
-ZK
-WQ
-Tx
-dG
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aCZ
+aDc
+aDf
+aDe
+aDj
+aDA
+aDe
+aDf
+aDc
+aDQ
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aMG
+aMG
+aMG
+aMG
+aMG
+aMG
+aNU
+adG
+adG
+aQD
+adG
+aOR
+aPh
+aPz
+aPO
+aPO
+aQm
+aQz
+aQK
+aQT
+aRa
+aRH
+aRj
+aRv
+aRa
+aSa
+aJz
+aKA
+aLk
+aZK
+aWQ
+aTx
+adG
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(37,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-rW
-rW
-Dd
-Df
-Dj
-Dr
-DB
-DJ
-Df
-DT
-rW
-rW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-fF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dG
-dG
-dG
-dG
-Np
-dG
-dG
-dG
-dG
-Of
-Of
-Of
-Of
-Of
-Mm
-PO
-Qc
-Qo
-QL
-Xz
-QU
-Ra
-MM
-Rx
-PA
-Ra
-MK
-Mq
-SB
-PV
-Te
-XA
-SA
-CO
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+arW
+arW
+aDd
+aDf
+aDj
+aDr
+aDB
+aDJ
+aDf
+aDT
+arW
+arW
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+aOf
+aOf
+aOf
+aOf
+aOf
+aMm
+aPO
+aQc
+aQo
+aQL
+aXz
+aAk
+aRa
+aMM
+aRx
+aPA
+aRa
+aMK
+aMq
+aSB
+aPV
+aBM
+aXA
+aSA
+aCO
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(38,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-CY
-Da
-De
-Dg
-Dk
-Ds
-Ds
-DK
-DA
-De
-Da
-DP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-cj
-lH
-lH
-lH
-GL
-HE
-cj
-cj
-HE
-cj
-cj
-HE
-GL
-cj
-HE
-cj
-cj
-HE
-cj
-NV
-NZ
-Of
-Oo
-HM
-Oq
-Of
-OR
-PP
-OR
-Qq
-OR
-OR
-OR
-Ra
-Rl
-Ry
-Ra
-RQ
-Sc
-JA
-CO
-CO
-CO
-CO
-CO
-CO
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aCY
+aDa
+aDe
+aDg
+aDk
+aDs
+aDs
+aDK
+aDA
+aDe
+aDa
+aDP
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+acj
+alH
+alH
+alH
+aGL
+aHE
+acj
+acj
+aHE
+acj
+acj
+aHE
+aGL
+acj
+aHE
+acj
+acj
+aHE
+acj
+aNV
+aNZ
+aOf
+aOo
+aHM
+aBJ
+aOf
+aOR
+aPP
+aOR
+aQq
+aOR
+aOR
+aOR
+aRa
+aRl
+aRy
+aRa
+aRQ
+aSc
+aSd
+aCO
+aCO
+aCO
+aCO
+aCO
+aCO
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(39,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-CY
-Da
-De
-Dh
-Dl
-Ds
-Ds
-DL
-DR
-De
-Da
-DP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-cj
-cm
-BV
-Cc
-Gt
-Cc
-Ip
-IW
-Cc
-Cc
-BV
-Cc
-LL
-IW
-Cc
-Mi
-Cc
-Cc
-No
-NS
-Et
-Go
-Op
-Op
-Op
-Ir
-IX
-QM
-Qe
-QA
-QB
-QM
-QM
-Mo
-Rm
-Rz
-PQ
-RR
-Sd
-JD
-LR
-Oh
-LM
-Ml
-NR
-CO
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aCY
+aDa
+aDe
+aDh
+aDl
+aDs
+aDs
+aDL
+aDR
+aDe
+aDa
+aDP
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+acj
+amu
+aBV
+aCc
+aGt
+aCc
+aIp
+aIW
+aCc
+aCc
+aBV
+aCc
+aCc
+aIW
+aCc
+aMi
+aCc
+aCc
+axP
+aNS
+aEt
+aGo
+aOp
+aOp
+aOp
+aIr
+aIX
+aQM
+aQe
+aQA
+aQB
+aQM
+aEf
+aMo
+aQM
+aRz
+aPQ
+aRR
+aJA
+aSg
+aLR
+aOh
+aLM
+aMl
+aNR
+aCO
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(40,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-rW
-rW
-Dd
-Df
-Dm
-Dt
-DC
-DM
-Df
-DT
-rW
-rW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ad
-cj
-kW
-FK
-BZ
-Gr
-Vp
-Vp
-Vp
-IY
-Vp
-HF
-JC
-LN
-Jx
-Vp
-Vp
-Vp
-Vp
-JE
-OD
-Ey
-Pj
-KB
-OE
-Lj
-Pj
-IZ
-PR
-Qn
-Rc
-QC
-QC
-QC
-QC
-PR
-Ro
-QC
-RS
-Se
-Qd
-Sr
-LP
-Ml
-Ml
-NR
-CO
-Ob
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+arW
+arW
+aDd
+aDf
+aDm
+aDt
+aDC
+aDM
+aDf
+aDT
+arW
+arW
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+acj
+akW
+aFK
+aBZ
+aGr
+aVp
+aVp
+aVp
+aIY
+aVp
+aHF
+aJC
+aLN
+aJx
+aVp
+aVp
+aVp
+aVp
+aJE
+aOD
+aEy
+aPj
+aKB
+aOE
+aLj
+aPj
+aIZ
+aPR
+aQn
+aRc
+aQC
+aQC
+aQC
+aQC
+aPR
+aRo
+aQC
+aRS
+aSe
+aFF
+aSr
+aBf
+aMl
+aMl
+aNR
+aCO
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(41,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Db
-Dc
-Df
-Dn
-Du
-DD
-DN
-Df
-Dc
-DS
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-fF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-cj
-oW
-Cm
-wh
-GM
-Nn
-Iq
-JB
-Nn
-Nn
-sf
-Nn
-Nn
-Nn
-Mk
-MH
-Nc
-Nn
-NA
-Or
-Et
-Gs
-KC
-Op
-Mj
-Is
-Ja
-QM
-Qf
-Qr
-PS
-QM
-QM
-Mp
-QM
-Qp
-PS
-RR
-Sd
-Ss
-Es
-LQ
-NQ
-Ml
-NR
-CO
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aDb
+aDc
+aDf
+aDn
+aDu
+aDD
+aDN
+aDf
+aDc
+aDS
+aac
+aac
+aac
+aac
+aQU
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+acj
+aoW
+aCm
+awh
+aGM
+aNn
+aEw
+aJB
+aNn
+aNn
+asf
+aNn
+aNn
+aul
+aNn
+aMH
+aNc
+aNn
+aNA
+aOr
+aEt
+aGs
+aKC
+aOp
+aMj
+aIs
+aJa
+aQM
+ayw
+aQr
+aPS
+aQM
+aQM
+aMp
+aQM
+aQp
+aPS
+aRR
+aJD
+aSs
+aEs
+aLQ
+aNQ
+aMl
+aNR
+aCO
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(42,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Db
-Dc
-Do
-Dv
-DE
-DO
-Dc
-DS
-ac
-ac
-gw
-gw
-gw
-gw
-kS
-lw
-lw
-lw
-kS
-kS
-kS
-lw
-lw
-lw
-kS
-kS
-kS
-rU
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-iE
-qw
-FL
-BK
-iE
-GO
-cj
-cj
-cj
-GO
-cj
-cj
-cj
-GO
-cj
-cj
-cj
-NL
-cj
-NV
-NZ
-Of
-HG
-HS
-HU
-Of
-PE
-PT
-OW
-Qs
-OW
-OW
-OW
-Re
-Rn
-RB
-Re
-RT
-Sc
-St
-CO
-CO
-CO
-CO
-CO
-CO
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aDb
+aDc
+acm
+aDv
+aDE
+aDO
+aDc
+aDS
+aac
+aac
+agw
+agw
+agw
+agw
+akS
+alw
+alw
+alw
+akS
+akS
+akS
+alw
+alw
+alw
+akS
+akS
+akS
+arU
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aiE
+aqw
+aFL
+aBK
+aiE
+aGO
+acj
+acj
+aGO
+acj
+acj
+aGO
+acj
+acj
+aGO
+acj
+acj
+aNL
+acj
+aNV
+aNZ
+aOf
+auz
+aHS
+aHU
+aOf
+aPE
+aPT
+aOW
+aQs
+aOW
+aOW
+aOW
+aRe
+aRn
+aRB
+aRe
+aRT
+aSc
+aSt
+aCO
+aCO
+aCO
+aCO
+aCO
+aCO
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(43,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Db
-rW
-Dw
-DF
-rW
-DS
-ac
-ac
-ac
-gw
-ip
-jt
-kl
-kS
-lx
-mm
-mM
-nv
-nZ
-oq
-mM
-pm
-mM
-qr
-rc
-rv
-rV
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-iE
-qA
-zN
-Fp
-GN
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dG
-dG
-dG
-dG
-dG
-dG
-Of
-Of
-Of
-Of
-Of
-PB
-PU
-Qg
-Qt
-QD
-QN
-QV
-Re
-NT
-RC
-ML
-Re
-MK
-Sv
-SI
-Rk
-Th
-Rw
-SI
-CO
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aDb
+arW
+aDw
+aDF
+arW
+aDS
+aac
+aac
+aac
+agw
+aip
+ajt
+akl
+akS
+alx
+amm
+amM
+anv
+anZ
+aoq
+amM
+apm
+amM
+aqr
+arc
+arv
+arV
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aiE
+aqA
+aqz
+aFp
+aGN
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adG
+adG
+adG
+adG
+adG
+adG
+aOf
+aOf
+aOf
+aOf
+aOf
+aPB
+aPU
+aQg
+aQt
+azr
+aQN
+aQV
+aRe
+aNT
+aRC
+aML
+aRe
+aMK
+aSv
+aSI
+aRk
+aBa
+aRw
+aSI
+aCO
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(44,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-CY
-Dx
-DG
-DP
-ac
-ac
-ac
-ac
-gw
-iq
-ju
-km
-kS
-ly
-mn
-mN
-mN
-mN
-mN
-mN
-pn
-pI
-pI
-rd
-rw
-kS
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-iE
-qC
-BQ
-FJ
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dG
-NB
-NM
-NM
-NW
-dG
-dG
-dG
-dG
-OW
-Pk
-PG
-Jb
-Qh
-Qu
-QE
-QO
-QW
-Re
-Rp
-RD
-RL
-Re
-Sa
-Sv
-SJ
-SW
-Ti
-WR
-SI
-dG
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aCY
+aDx
+aDG
+aDP
+aac
+aac
+aac
+aac
+agw
+aiq
+aju
+akm
+akS
+aly
+amn
+amN
+amN
+amN
+amN
+amN
+apn
+apI
+apI
+ard
+arw
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aiE
+aqC
+aBQ
+aFJ
+aGP
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adG
+aNB
+aNM
+aNM
+aNW
+adG
+adG
+aRh
+adG
+aOW
+aAO
+aPG
+aJb
+aQh
+aQu
+aQE
+aQO
+aDU
+aRe
+aMJ
+aRD
+aRL
+aRe
+aSa
+aSv
+aSJ
+aSW
+aTi
+aWR
+aSI
+adG
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(45,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-CY
-Dy
-DH
-DP
-ac
-ad
-gw
-gw
-gw
-ir
-jv
-kn
-kS
-lz
-mo
-mO
-nw
-nw
-nw
-nw
-nw
-nw
-qs
-re
-rw
-kS
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-iE
-qF
-BN
-Cd
-iE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dG
-NC
-ab
-ab
-ab
-NM
-NM
-Ot
-dG
-OX
-Pl
-PH
-PW
-Qi
-Qv
-QP
-QP
-Qj
-Rf
-Rq
-RE
-Rq
-RU
-Sf
-Sw
-LO
-SX
-Rd
-Xy
-SI
-dG
-OF
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aCY
+aDy
+aDH
+aDP
+aac
+aac
+agw
+agw
+agw
+air
+ajv
+akn
+akS
+ahq
+amo
+amO
+anw
+anw
+anw
+anw
+anw
+anw
+aqs
+are
+arw
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aQW
+aiE
+aqF
+aBN
+aCd
+aiE
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adG
+aNC
+aab
+aab
+aab
+aNM
+aNM
+aOt
+adG
+aOX
+aPl
+aPH
+aPW
+aQi
+aQv
+aQP
+aQP
+aQj
+aRf
+aRq
+aRE
+aRq
+aRU
+aSf
+aSw
+aLO
+aSX
+aRd
+aXy
+aSI
+adG
+aOF
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(46,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-rW
-Dz
-Dz
-rW
-ac
-ac
-gw
-hd
-hS
-is
-jw
-ko
-kS
-lA
-mp
-mP
-nx
-nx
-nx
-nx
-nx
-nx
-qt
-re
-rw
-kS
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-iE
-qx
-wb
-Gl
-iE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dG
-ND
-MG
-MG
-MG
-MG
-ab
-Om
-dG
-OY
-Pm
-PI
-PX
-TB
-Qj
-QG
-QG
-Tu
-Re
-Rr
-RF
-RM
-Re
-Sg
-Sx
-SJ
-SY
-Tk
-Tv
-SI
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+arW
+aDz
+aDz
+arW
+aac
+aac
+agw
+ahd
+ahS
+ais
+ajw
+akn
+akS
+alA
+amp
+amP
+anx
+anx
+anx
+anx
+anx
+anx
+aqt
+are
+aMI
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aiE
+aqx
+awb
+ang
+aiE
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adG
+aND
+aMG
+aMG
+aMG
+aMG
+aab
+aOm
+adG
+aOY
+aPm
+aPI
+aPX
+aTB
+aQj
+aQG
+aQG
+azU
+aRe
+aRr
+aRF
+aRp
+aRe
+aSl
+aSx
+aSJ
+aSY
+aTk
+aDo
+aSI
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(47,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-gw
-gw
-gw
-it
-jx
-kn
-kS
-lB
-mp
-mP
-nx
-nx
-nx
-nx
-nx
-nx
-qt
-re
-rw
-rV
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-iE
-sd
-BQ
-Gn
-iE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Np
-dG
-dG
-dG
-dG
-dG
-Oi
-Om
-dG
-OZ
-Pn
-PJ
-PY
-Qk
-Qw
-Qj
-Qj
-QY
-Re
-Rs
-OG
-OS
-RV
-Sh
-Sy
-SI
-Tt
-Rt
-RA
-SI
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+agw
+agw
+agw
+ait
+ajx
+akn
+akS
+alB
+amp
+amP
+anx
+anx
+anx
+anx
+anx
+anx
+aqt
+are
+arw
+arV
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aiE
+asd
+aBQ
+aGn
+aiE
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aQU
+adG
+adG
+adG
+adG
+adG
+adG
+aOi
+aOm
+adG
+aOZ
+aPn
+aPJ
+aPY
+aQk
+aQw
+aQj
+aQj
+aQY
+aRe
+aRs
+aOG
+aOS
+aRV
+aSh
+aSy
+aSI
+aRM
+aRt
+aRA
+aSI
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(48,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-fF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-gw
-bz
-bB
-eU
-cZ
-kn
-kS
-lC
-mp
-mQ
-ny
-ny
-or
-oS
-nx
-nx
-qt
-re
-rx
-rV
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-iE
-sg
-zN
-Gp
-iE
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-dG
-Oi
-Om
-dG
-OW
-Po
-PK
-PK
-PK
-PK
-PK
-PK
-QZ
-Re
-Re
-Re
-Re
-Re
-Si
-Sz
-SI
-SI
-SI
-SI
-SI
-Ob
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+agw
+abz
+abB
+aeU
+acZ
+akn
+akS
+alC
+amp
+amQ
+any
+any
+aor
+aoS
+anx
+anx
+aqt
+are
+arw
+arV
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aiE
+asg
+azN
+aGp
+aiE
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+adG
+aOi
+aOm
+adG
+aOW
+aPo
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aQZ
+aRe
+aRe
+aRe
+aRe
+aRe
+aSi
+aSz
+aSI
+aSI
+aSI
+aSI
+aSI
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(49,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-Uj
-DW
-kn
-kS
-lD
-mq
-mQ
-ny
-ny
-lE
-oT
-nx
-nx
-qt
-re
-rw
-rV
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-fF
-ac
-ac
-iE
-rj
-BP
-Fo
-GQ
-Ba
-BU
-Cx
-JF
-KD
-Ll
-LS
-LS
-MN
-LS
-LS
-LS
-zL
-zL
-zL
-dG
-Oi
-Om
-dG
-Pa
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-Pa
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aQW
+alo
+alo
+alo
+alo
+alo
+alo
+alo
+alo
+alo
+alo
+alo
+alo
+aby
+aDW
+akn
+akS
+alD
+amq
+amQ
+any
+any
+alE
+aoT
+anx
+anx
+aqt
+are
+arw
+arV
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aiE
+arj
+aBP
+aFo
+aGQ
+aoL
+aBU
+aCx
+aJF
+aFw
+aLl
+aLS
+aLS
+aMN
+aLS
+aLS
+aLS
+azL
+azL
+azL
+adG
+aOi
+aOm
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+aRh
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+aRh
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(50,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bv
-bv
-bv
-bv
-bv
-PC
-Tz
-TL
-TQ
-TY
-bh
-Uk
-DW
-kn
-kT
-lE
-mr
-mQ
-ny
-ny
-os
-oU
-nx
-nx
-qt
-re
-rw
-kS
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-hh
-hp
-hp
-hp
-hh
-fK
-fK
-fK
-fK
-fK
-oy
-ut
-Bp
-Gq
-zL
-FN
-BW
-BW
-JG
-KE
-Ll
-LT
-LS
-LT
-LS
-Nq
-LS
-zL
-zL
-zL
-dG
-Oi
-ab
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-NM
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+alY
+alY
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+abA
+aDW
+akn
+akT
+alE
+amr
+amQ
+any
+any
+aos
+aoU
+anx
+anx
+aqt
+are
+arw
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahh
+ahp
+ahp
+ahp
+ahh
+afK
+afK
+afK
+afK
+afK
+aoy
+amT
+aBp
+aGq
+azL
+aFN
+aBW
+aBW
+aJG
+aKE
+aLl
+aLT
+aLS
+aLT
+aLS
+aNq
+aLS
+azL
+azL
+azL
+adG
+aOi
+aab
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(51,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bv
-bv
-bv
-bv
-bv
-PD
-TC
-TM
-TR
-TZ
-Un
-Ul
-jA
-kp
-kT
-lE
-mr
-mQ
-ny
-ny
-ny
-ny
-ny
-ny
-qu
-re
-rw
-kS
-Ef
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-hj
-hr
-pA
-tV
-hh
-uu
-uu
-xF
-yr
-Be
-fK
-Am
-FM
-Cf
-zL
-Bb
-BW
-Cy
-JH
-KF
-Lm
-LS
-LS
-LS
-LS
-LS
-NE
-zL
-zL
-zL
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+alY
+alY
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+air
+ajA
+akp
+akT
+alE
+amr
+amQ
+any
+any
+any
+any
+any
+any
+aqu
+are
+arw
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahj
+ahr
+apA
+atV
+ahh
+auu
+auu
+axF
+ayr
+aBe
+afK
+aAm
+aFM
+aCf
+azL
+aBb
+aBW
+aCy
+aJH
+aKF
+aLm
+aLS
+aLS
+aLS
+aLS
+aLS
+aLS
+azL
+azL
+azL
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(52,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-TD
-TM
-TS
-Ua
-Uo
-Um
-DW
-kq
-kU
-lF
-mr
-mQ
-ny
-ny
-ny
-ny
-ny
-ny
-qu
-re
-ry
-kS
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-hj
-hT
-tp
-tW
-hh
-uu
-uu
-uu
-yB
-Bg
-fK
-AY
-FO
-Cg
-zL
-Bc
-BW
-BW
-JI
-KE
-Ll
-LT
-LS
-LT
-LS
-Nr
-LS
-zL
-zL
-zL
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+air
+aDW
+akq
+akU
+alF
+amr
+amQ
+any
+any
+any
+any
+any
+any
+aqu
+are
+ary
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahj
+ahT
+atp
+atW
+ahh
+auu
+auu
+auu
+ayB
+aBg
+afK
+aAY
+aFO
+aCg
+azL
+aBc
+aBW
+aBW
+aJI
+aKE
+aLl
+aLT
+aLS
+aLT
+aLS
+aNr
+aLS
+azL
+azL
+azL
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(53,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bw
-cl
-cX
-ht
-Oa
-RJ
-TE
-TM
-TT
-Ub
-Uo
-Um
-jB
-kr
-kV
-lG
-ms
-mR
-nz
-nz
-nz
-nz
-nz
-nz
-qv
-re
-rw
-rV
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-hj
-hT
-tq
-tX
-hh
-uu
-uu
-xO
-yB
-Bh
-zG
-Cs
-FP
-Cq
-Al
-Bd
-Ca
-Jc
-JJ
-KG
-Ln
-LS
-LS
-LS
-LS
-LS
-LS
-zL
-zL
-zL
-Ob
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+air
+acW
+akr
+akV
+alG
+ams
+amR
+anz
+anz
+anz
+anz
+anz
+anz
+aqv
+are
+arw
+arV
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahj
+ahT
+atq
+akt
+ahh
+auu
+auu
+axO
+ayB
+aBh
+azG
+aCs
+aFP
+aCq
+aAl
+aBd
+aCa
+aJc
+aJJ
+aKG
+aLl
+aLS
+aLS
+aLS
+aLS
+aLS
+aLS
+azL
+azL
+azL
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(54,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-by
-cn
-cY
-cn
-Og
-SC
-TF
-TM
-TU
-Uc
-Uo
-Ut
-jC
-ks
-kT
-lE
-mt
-mS
-mN
-mN
-mN
-mN
-mN
-pJ
-pI
-rf
-rz
-rV
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-hh
-hU
-tr
-tY
-hh
-uu
-uu
-xO
-yN
-Bj
-Fl
-An
-Bw
-Ct
-CD
-FQ
-BW
-BW
-JK
-KE
-Ll
-LT
-LS
-LT
-LS
-Nr
-LS
-zL
-zL
-zL
-dG
-Oi
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+agI
+acX
+aks
+akT
+alE
+amt
+amS
+amN
+amN
+amN
+amN
+amN
+apJ
+apI
+arf
+arz
+arV
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahh
+ahU
+atr
+atY
+ahh
+auu
+auu
+axO
+ayN
+aBj
+aFl
+aAn
+aBw
+aCt
+aCD
+aFQ
+aBW
+aBW
+aJK
+aKE
+aLl
+aLT
+aLS
+aLT
+aLS
+aNr
+aLS
+azL
+azL
+azL
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(55,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bA
-cV
-cn
-DU
-OT
-SF
-TG
-TN
-TV
-Ue
-Up
-Uu
-jD
-kt
-kX
-lI
-mu
-mT
-mu
-mu
-mu
-mu
-mu
-pK
-rg
-rg
-rA
-rV
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-hj
-iu
-tB
-ua
-hh
-uu
-uu
-xO
-yP
-Bu
-fK
-Bf
-FR
-CK
-zL
-XU
-BW
-CB
-JL
-KH
-Lo
-LS
-LS
-LS
-LS
-LS
-NE
-zL
-zL
-zL
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+air
+aWF
+akx
+akT
+acY
+arg
+adK
+arg
+arg
+arg
+arg
+arg
+aeo
+arg
+arg
+arA
+arV
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahj
+aiu
+atB
+aua
+ahh
+auu
+auu
+axO
+ayP
+auc
+afK
+amV
+aFR
+aCK
+azL
+aXU
+aBW
+aCB
+aJL
+aKH
+aLo
+aLS
+aLS
+aLS
+aLS
+aLS
+aLS
+azL
+azL
+azL
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(56,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bC
-cn
-eo
-cn
-OU
-SH
-TH
-TO
-TW
-Uf
-Uq
-Ud
-dK
-ku
-kS
-lJ
-mv
-mU
-mv
-mv
-mv
-mv
-mv
-pL
-rh
-rh
-rB
-kS
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-hj
-iw
-tC
-ub
-hh
-uV
-uV
-yk
-yT
-BH
-fK
-Bi
-FS
-CN
-zL
-BI
-BW
-BW
-JG
-KE
-Ll
-LT
-LS
-LT
-LS
-Nr
-LS
-zL
-zL
-zL
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+air
+aWJ
+aku
+akS
+aMS
+amv
+amU
+amv
+amv
+amv
+amv
+amv
+apL
+arh
+arh
+arB
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahj
+aiw
+atC
+aub
+ahh
+auV
+auV
+ayk
+ayT
+aBH
+afK
+aBi
+aFS
+aCN
+azL
+aBI
+aBW
+aBW
+aJG
+aKE
+aLl
+aLT
+aLS
+aLT
+aLS
+aNr
+aLS
+azL
+azL
+azL
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(57,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ad
-bh
-ck
-cW
-hq
-MI
-Pi
-Ty
-TI
-TM
-TM
-Ug
-Ur
-Uv
-jF
-kv
-kS
-lJ
-mv
-mV
-nB
-oa
-ot
-oa
-mv
-pM
-qz
-ri
-rC
-kS
-ac
-ac
-ac
-ac
-ac
-fF
-ac
-ac
-ac
-hj
-iy
-tD
-uc
-hh
-uW
-wO
-yl
-zl
-Fi
-fK
-Bi
-FS
-Cr
-zL
-BJ
-Cb
-CC
-JM
-KI
-Lp
-LS
-LS
-MO
-LS
-LS
-LS
-zL
-zL
-zL
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+aqO
+alo
+ack
+ajF
+akv
+akS
+alJ
+amv
+amU
+anB
+aoa
+aot
+aoa
+amv
+apM
+aiK
+ari
+arC
+akS
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+ahj
+aiy
+atD
+alI
+ahh
+auW
+awO
+ayl
+azl
+aFi
+afK
+aIq
+aFS
+aCr
+azL
+aoQ
+aCb
+aCC
+aJM
+aGl
+aLp
+aLS
+aLS
+aMO
+aLS
+aLS
+aLS
+azL
+azL
+azL
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(58,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-TJ
-TM
-TM
-Uh
-Us
-Uw
-jG
-WN
-kY
-kY
-kZ
-mW
-nC
-kY
-kY
-kY
-kT
-pN
-kT
-kS
-kS
-kS
-fj
-fj
-fj
-ac
-fM
-fM
-fM
-fM
-fM
-hh
-hh
-hh
-uq
-hh
-fK
-fK
-fK
-zG
-fK
-fK
-yR
-Gu
-XM
-zL
-zL
-zL
-CI
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+alo
+alo
+alo
+alo
+alo
+alo
+alo
+aqO
+aqO
+aqO
+aqO
+alo
+acl
+ajG
+aWN
+akY
+akY
+akZ
+amW
+anC
+akY
+akY
+akY
+akT
+apN
+akT
+akS
+akS
+akS
+afj
+afj
+afj
+aac
+afM
+afM
+afM
+afM
+afM
+ahh
+ahh
+ahh
+auq
+ahh
+afK
+afK
+afK
+azG
+afK
+afK
+ayR
+aGu
+aXM
+azL
+azL
+azL
+aCI
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+azL
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(59,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-dW
-eq
-fn
-hB
-gQ
-fc
-iJ
-jb
-TP
-VG
-bh
-Wj
-WD
-kx
-kY
-lK
-mw
-DX
-DZ
-ob
-of
-kY
-po
-pO
-qB
-fj
-iI
-rD
-fQ
-wL
-fj
-ac
-Ei
-XH
-xh
-XN
-gD
-hk
-iz
-tE
-hi
-wA
-wW
-xG
-xP
-Ar
-yu
-Fm
-AT
-Gv
-XS
-GR
-HI
-It
-Jd
-JN
-zo
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+adW
+aeq
+afn
+adx
+agQ
+afc
+aqO
+aqO
+aqO
+aqO
+alo
+acn
+aWD
+aNE
+akY
+alK
+amw
+aDX
+aDZ
+aob
+aof
+akY
+apo
+apO
+aqB
+afj
+aiI
+arD
+afQ
+awL
+afj
+aac
+aEi
+aXH
+axh
+aXN
+agD
+ahk
+aiz
+atE
+ahi
+awA
+awW
+axG
+aHj
+aAr
+ayu
+aFm
+aAT
+aGv
+aXS
+aGR
+aHI
+aHj
+aJd
+aJN
+azo
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(60,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-dT
-dT
-au
-dT
-au
-dT
-au
-dT
-fc
-er
-fo
-ge
-gR
-fc
-bh
-bh
-bh
-bh
-bh
-Wk
-pS
-kx
-kZ
-lL
-mw
-DY
-mw
-mw
-ov
-kY
-ir
-jR
-kx
-fj
-jK
-vF
-fj
-fj
-fj
-fi
-XG
-XI
-yi
-XO
-XQ
-XR
-iA
-tF
-wD
-xI
-xN
-yO
-yv
-ze
-zJ
-ze
-BX
-XK
-XT
-Ao
-BL
-hf
-Je
-JO
-zo
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+adT
+adT
+aau
+adT
+aau
+adT
+aau
+adT
+afc
+aer
+afo
+age
+agR
+afc
+alo
+alo
+alo
+alo
+alo
+acV
+apS
+akx
+akZ
+alL
+amw
+aDY
+amw
+amw
+aov
+akY
+air
+ajR
+akx
+afj
+ajK
+avF
+afj
+afj
+afj
+afi
+aXG
+aXI
+ayi
+aXO
+aXQ
+aXR
+aiA
+atF
+awD
+axI
+axN
+ayO
+ayv
+aze
+azJ
+aze
+aBX
+aXK
+aXT
+aAo
+aBL
+ahf
+aJe
+aJO
+azo
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(61,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-aq
-ai
-ae
-av
-aM
-am
-bU
-cz
-eA
-fc
-es
-fp
-gO
-gS
-hw
-iL
-iL
-iL
-iL
-gw
-Wl
-WE
-kx
-kZ
-lL
-mw
-DY
-mw
-mw
-ow
-kY
-pp
-jR
-iD
-fj
-ky
-gF
-fP
-wM
-fj
-rn
-Ei
-XJ
-fh
-XL
-fh
-hm
-jy
-tE
-wx
-wB
-xD
-xH
-yH
-wB
-yQ
-AM
-yS
-zf
-zK
-Ap
-BM
-Ce
-Jf
-JP
-zo
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aaq
+aai
+aae
+aav
+aaM
+aam
+abU
+acz
+abC
+afc
+aes
+afp
+agO
+agS
+ahw
+aiL
+aiL
+aiL
+aiL
+agw
+aWl
+aWE
+akx
+akZ
+alL
+amw
+aDY
+amw
+amw
+aow
+akY
+app
+ajR
+aiD
+afj
+aky
+agF
+afP
+awM
+afj
+arn
+aEi
+aXJ
+afh
+aXL
+afh
+ahm
+ajy
+atE
+awx
+awB
+axD
+axH
+ayH
+awB
+ayQ
+aAM
+ayS
+azf
+azK
+aAp
+apK
+aCe
+aJf
+aJP
+azo
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(62,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-ac
-ai
-ak
-aw
-aN
-bD
-bV
-cA
-dh
-fc
-et
-fq
-ge
-hv
-hw
-iL
-iL
-jz
-iL
-VX
-ix
-jM
-kx
-kZ
-lM
-mw
-mY
-nD
-od
-ox
-oV
-pq
-iC
-vj
-iH
-pP
-wm
-fj
-fj
-fj
-rn
-fh
-XL
-fh
-XP
-fh
-hn
-jE
-tT
-tU
-uY
-uY
-wE
-zc
-uY
-tU
-AS
-yU
-Cr
-zE
-zE
-zE
-Bn
-Jg
-Bn
-zE
-zE
-zH
-zH
-zH
-zE
-zE
-zE
-Ef
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aac
+aai
+aak
+aaw
+aaN
+abD
+abV
+acA
+adh
+afc
+aet
+afq
+age
+ahv
+ahw
+aiL
+aiL
+ajz
+aiL
+aVX
+aix
+ajM
+akx
+akZ
+amw
+amw
+amY
+anD
+aod
+aox
+aoV
+apq
+aiC
+avj
+aiH
+apP
+awm
+afj
+afj
+afj
+arn
+afh
+aXL
+afh
+aXP
+afh
+ahn
+ajE
+atT
+atU
+auY
+auY
+awE
+azc
+auY
+atU
+aAS
+ayU
+aCr
+azE
+azE
+azE
+aBn
+aJg
+aBn
+azE
+azE
+azH
+azH
+azH
+azE
+azE
+azE
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(63,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-XD
-dT
-al
-ax
-aO
-bE
-bW
-cB
-di
-fc
-eu
-fr
-ge
-hv
-hw
-iL
-iL
-iL
-iL
-VX
-ix
-WF
-kx
-kZ
-lN
-mw
-mX
-mw
-mw
-mw
-kZ
-pr
-pQ
-iG
-fj
-qD
-wo
-fO
-wM
-fj
-rn
-fh
-fL
-gy
-gC
-hg
-ho
-jI
-tT
-ur
-vt
-vS
-wK
-zd
-xC
-uY
-AW
-yU
-zq
-Bn
-GS
-HJ
-Iu
-Jh
-JQ
-KJ
-Lq
-yp
-yq
-MP
-Ne
-Ns
-zE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aRJ
+adT
+aal
+aax
+aaO
+abE
+abW
+acB
+adi
+afc
+aeu
+afr
+age
+ahv
+ahw
+aiL
+aiL
+aiL
+aiL
+aVX
+aix
+aWF
+akx
+akZ
+alN
+amw
+amX
+amw
+amw
+amw
+akZ
+apr
+apQ
+aiG
+afj
+aqD
+awo
+afO
+awM
+afj
+arn
+afh
+afL
+agy
+agC
+ahg
+aho
+ajI
+atT
+aur
+avt
+avS
+awK
+azd
+axC
+auY
+aAW
+ayU
+azq
+aBn
+aGS
+aHJ
+aIu
+aJh
+aJQ
+aKJ
+aLq
+ayp
+ayq
+aMP
+aNe
+aNs
+azE
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(64,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-aq
-ai
-am
-ay
-aP
-am
-cq
-cC
-dp
-fc
-eB
-fS
-ge
-hv
-hw
-iL
-jz
-iL
-iL
-VX
-ix
-WF
-kx
-kZ
-lN
-mw
-mZ
-nE
-mw
-mw
-kZ
-ix
-pQ
-qE
-fj
-fj
-fj
-fj
-fj
-fj
-rn
-tG
-ud
-ud
-ud
-ud
-ud
-ud
-tT
-us
-vu
-vT
-wX
-xj
-xE
-yo
-ys
-yV
-zw
-CA
-GT
-HK
-Cz
-Ji
-JR
-KK
-Lr
-LU
-Mr
-MQ
-Nf
-Nt
-NF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aaq
+aai
+aam
+aay
+aaP
+aam
+acq
+acC
+adp
+afc
+adg
+afS
+age
+ahv
+ahw
+aiL
+ajz
+aiL
+aiL
+aVX
+aix
+aWF
+akx
+akZ
+alN
+amw
+amZ
+anE
+amw
+amw
+akZ
+aix
+apQ
+aqE
+afj
+afj
+afj
+afj
+afj
+afj
+arn
+atG
+aud
+aud
+aud
+aud
+aud
+aud
+atT
+aus
+avu
+avT
+awX
+axj
+axE
+ayo
+ays
+ayV
+azw
+aCA
+aGT
+aHK
+aCz
+baB
+aJR
+aKK
+aLr
+aLU
+aMr
+aMQ
+aNf
+aNt
+aNF
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(65,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-aq
-ai
-aj
-aG
-bj
-bF
-bX
-cD
-dq
-fc
-hz
-fT
-WW
-eJ
-hw
-iL
-iL
-iL
-iL
-gw
-iK
-WF
-WO
-kY
-lO
-mx
-na
-nF
-mw
-ou
-kY
-iK
-pQ
-sS
-ha
-ha
-ha
-ss
-sR
-gw
-rn
-tG
-ud
-ux
-ux
-ux
-ux
-ud
-tT
-qy
-vv
-vU
-wY
-xl
-xJ
-uY
-yt
-yW
-zy
-Bn
-Aq
-tZ
-Iv
-Jj
-tZ
-KL
-Ls
-LV
-Ms
-MR
-tZ
-Nu
-NF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aaq
+aai
+aaj
+aaG
+abj
+abF
+abX
+acD
+adq
+afc
+ahz
+afT
+aWW
+aeJ
+ahw
+aiL
+aiL
+aiL
+aiL
+agw
+aOa
+aWF
+aWO
+akY
+alO
+amx
+ana
+anF
+aMw
+aou
+akY
+aix
+apQ
+asS
+aha
+aha
+aOb
+ass
+asR
+agw
+arn
+atG
+aud
+aux
+aux
+aux
+aux
+aud
+atT
+aqy
+avv
+avU
+awY
+axl
+axJ
+auY
+ayt
+ayW
+azy
+aBn
+aAq
+atZ
+aIv
+aJj
+atZ
+aKL
+aLs
+aLV
+aMs
+aMR
+atZ
+aNu
+aNF
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(66,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-aq
-dT
-dT
-dT
-dT
-dT
-dT
-cE
-dT
-fc
-fc
-fU
-fc
-fc
-fc
-dP
-dP
-dP
-dP
-dP
-Wm
-WG
-WS
-kY
-kY
-kY
-nb
-nb
-kY
-kY
-kY
-ps
-pR
-qG
-kE
-kE
-kE
-st
-oz
-qP
-se
-tG
-ud
-ux
-ux
-ux
-ux
-ud
-tT
-uv
-vw
-vV
-wZ
-xz
-xL
-tU
-zB
-BS
-zB
-zE
-AU
-HL
-Iw
-Jk
-JS
-Iv
-Lt
-LW
-Mt
-BO
-Ng
-Nv
-NF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aaq
+adT
+adT
+adT
+adT
+adT
+adT
+acE
+adT
+afc
+afc
+afU
+afc
+afc
+afc
+adP
+adP
+adP
+adP
+adP
+aWm
+aWG
+aWS
+akY
+akY
+akY
+anb
+anb
+akY
+akY
+akY
+aps
+apR
+aqG
+akE
+akE
+akE
+ast
+aoz
+aqP
+ase
+atG
+aud
+aux
+aux
+aux
+aux
+aud
+atT
+auv
+avw
+avV
+awZ
+axz
+axL
+atU
+azB
+aBS
+azB
+azE
+aAU
+aHL
+aIw
+aJk
+aJS
+aIv
+aLt
+aLW
+aMt
+aBO
+aNg
+aNv
+aNF
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(67,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Ot
-aq
-ac
-ac
-an
-aV
-bG
-cp
-cH
-do
-af
-ev
-fs
-gf
-gT
-hG
-iM
-jH
-iM
-VH
-VY
-Wn
-WF
-WT
-la
-gw
-my
-my
-my
-my
-my
-ik
-pt
-pS
-qH
-pS
-pS
-pS
-jR
-pX
-lP
-ac
-tG
-ud
-ux
-ux
-ux
-ux
-ud
-tT
-uw
-vx
-vW
-vx
-xA
-xM
-tU
-zM
-yX
-zz
-zE
-AV
-BO
-Cu
-Jl
-JT
-KM
-Lu
-LX
-Mu
-MS
-Nh
-Nw
-zE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOt
+aaq
+aac
+aac
+aan
+aaV
+abG
+acp
+acH
+ado
+aaf
+aev
+afs
+agf
+agT
+ahG
+aiM
+afR
+aiM
+aVH
+aVY
+aWn
+aWF
+aWT
+ala
+agw
+amy
+amy
+amy
+amy
+amy
+aik
+apt
+apS
+aqH
+apS
+apS
+apS
+ajR
+apX
+alP
+aac
+atG
+aud
+aux
+aux
+aux
+aux
+aud
+atT
+auw
+avx
+avW
+avx
+axA
+axM
+atU
+azM
+ayX
+azz
+azE
+aAV
+aBO
+aCu
+asa
+aJT
+aKM
+aLu
+aLX
+aMu
+atX
+aNh
+aNw
+azE
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(68,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-ac
-ac
-an
-aW
-bH
-bY
-cI
-dj
-af
-ew
-ft
-gg
-gg
-hH
-iN
-jJ
-TX
-VI
-VZ
-Wn
-WF
-WT
-la
-lP
-my
-my
-my
-my
-my
-ik
-pu
-pT
-qI
-rk
-hc
-rX
-su
-pX
-gw
-ac
-tG
-ud
-ux
-ux
-ux
-ux
-ud
-tT
-uX
-vQ
-vX
-xa
-xB
-yj
-tU
-zU
-yZ
-zA
-zE
-AX
-HN
-Cv
-zD
-zD
-KN
-Lv
-LY
-zD
-zD
-zE
-zE
-zE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aac
+aac
+aan
+aaW
+abH
+abY
+acI
+adj
+aaf
+aew
+aft
+agg
+agg
+ahH
+aiN
+ajJ
+aTX
+aVI
+aVZ
+aWn
+aWF
+aWT
+ala
+alP
+amy
+amy
+amy
+amy
+amy
+aik
+apu
+apT
+aqI
+ark
+ahc
+arX
+asu
+apX
+agw
+aac
+atG
+aud
+aux
+aux
+aux
+aux
+aud
+atT
+auX
+avQ
+avX
+axa
+axa
+ayj
+atU
+amh
+ayZ
+azA
+azE
+aAX
+aHN
+aCv
+azD
+azD
+aKN
+aLv
+aLY
+azD
+azD
+azE
+azE
+azE
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(69,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-aq
-ac
-af
-dg
-aX
-bZ
-cJ
-dk
-dQ
-ex
-fu
-gh
-gU
-dP
-iO
-jL
-dP
-VJ
-Wa
-Wn
-WF
-WT
-la
-lP
-my
-my
-nG
-my
-my
-oX
-oX
-oX
-qJ
-oX
-oX
-rY
-jX
-pX
-lP
-ac
-tG
-ud
-ud
-ux
-ux
-vY
-ud
-tT
-tU
-uY
-wy
-uY
-tU
-ym
-tU
-Ag
-za
-zC
-zE
-AZ
-HO
-Cw
-zD
-JU
-KO
-Lw
-LZ
-Mv
-zD
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aaq
+aac
+aaf
+aaX
+aaX
+abZ
+acJ
+adk
+adQ
+aex
+afu
+agh
+agU
+adP
+aiO
+ajL
+adP
+aVJ
+aWa
+aWn
+aWF
+aWT
+ala
+alP
+amy
+amy
+anG
+amy
+amy
+aoX
+aoX
+aoX
+aqJ
+aoX
+aoX
+arY
+ajX
+apX
+alP
+aac
+atG
+aud
+aud
+aux
+aux
+avY
+aud
+atT
+atU
+auY
+awy
+auY
+atU
+aym
+atU
+aAg
+aza
+azC
+azE
+aAZ
+aHO
+aCw
+azD
+aJU
+aKO
+aLw
+aLZ
+aMv
+azD
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(70,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-ac
-ac
-af
-aX
-aX
-co
-cK
-dl
-dR
-ey
-fv
-Xc
-gV
-hI
-gG
-jN
-Ui
-VK
-dP
-Wo
-WF
-WT
-lb
-gw
-my
-my
-my
-my
-my
-oX
-pv
-pU
-qK
-pv
-oX
-rZ
-sv
-pX
-lP
-ac
-ts
-ts
-uy
-uZ
-uZ
-vZ
-wF
-tU
-tU
-vR
-wz
-xb
-tU
-yn
-tU
-zB
-zb
-zB
-zE
-zE
-HP
-zE
-zD
-JV
-KP
-Lx
-Ma
-Mw
-zD
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aac
+aac
+aaf
+aIL
+aaX
+aco
+acK
+adl
+adR
+aey
+afv
+aXc
+agV
+ahI
+agG
+ajN
+aUi
+aIt
+adP
+aWo
+aWF
+aWT
+alb
+agw
+amy
+amy
+amy
+amy
+amy
+aoX
+apv
+apU
+aqK
+apv
+aoX
+arZ
+asv
+apX
+alP
+aac
+ats
+ats
+auy
+auZ
+auZ
+avZ
+awF
+atU
+atU
+avR
+awz
+axb
+atU
+ayn
+atU
+azB
+azb
+azB
+azE
+azE
+aHP
+azE
+azD
+asl
+aKP
+aLx
+aMa
+aHG
+azD
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(71,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-Om
-aq
-ac
-ac
-an
-aY
-WP
-bI
-cL
-WZ
-dS
-ez
-fw
-gH
-gW
-gH
-gH
-jO
-jQ
-VL
-dP
-Wp
-jM
-kv
-lc
-lc
-mz
-lc
-lc
-lc
-lc
-lc
-pw
-pV
-qL
-rl
-oX
-hs
-sw
-pX
-gw
-ac
-ac
-ts
-uz
-va
-vy
-wa
-wG
-xc
-xR
-xK
-xQ
-zk
-yY
-BR
-BY
-Cn
-CV
-FT
-BY
-GU
-HQ
-Ix
-Jm
-JW
-KQ
-Ly
-KQ
-Mx
-zD
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aOm
+aaq
+aac
+aac
+aan
+aaY
+aWP
+abI
+acL
+aWZ
+adS
+aez
+afw
+agH
+agW
+agH
+agH
+ajO
+ajQ
+aVL
+adP
+aWp
+ajM
+akv
+alc
+alc
+amz
+alc
+alc
+alc
+alc
+alc
+apw
+apV
+aqL
+arl
+aoX
+ahs
+asw
+apX
+agw
+aac
+aac
+ats
+aPD
+ava
+avy
+awa
+awG
+axc
+axR
+axK
+axQ
+azk
+ayY
+aBR
+aBY
+aCn
+aCV
+aFT
+aBY
+aGU
+aHQ
+aIx
+aJm
+aJW
+aKQ
+aLy
+aKQ
+aMx
+azD
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(72,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-an
-bi
-bJ
-cr
-dd
-dn
-dQ
-gd
-gI
-HH
-hu
-hJ
-iP
-jP
-Ux
-VM
-dP
-Wq
-jM
-kx
-lc
-lQ
-mA
-lc
-nH
-og
-oA
-lc
-px
-pV
-qL
-rm
-oX
-sa
-sx
-pX
-lP
-ac
-ac
-ue
-uA
-vb
-vz
-Er
-Er
-xd
-nA
-oc
-oc
-oe
-oc
-oc
-sb
-zF
-zI
-zF
-zF
-GV
-HR
-As
-Jm
-JX
-KR
-Ly
-KR
-My
-zD
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aan
+abi
+abJ
+acr
+add
+adn
+adQ
+agd
+aeB
+aHH
+ahu
+ahJ
+aiP
+ajP
+aUx
+aVM
+adP
+aWq
+ajM
+akx
+alc
+alQ
+amA
+alc
+anH
+aog
+aoA
+alc
+apx
+apV
+aqL
+arm
+aoX
+ajC
+asx
+apX
+alP
+aac
+aac
+aue
+auA
+avb
+avz
+aEr
+aEr
+axd
+anA
+aoc
+aoc
+aoe
+aoc
+aoc
+asb
+azF
+azI
+azF
+azF
+aGV
+aHR
+aAs
+aJm
+aJX
+aKR
+aLy
+aKR
+aMy
+azD
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(73,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-af
-dO
-dO
-dO
-de
-dO
-dO
-dO
-dO
-hx
-hy
-hx
-hx
-hx
-Uy
-VN
-Wb
-Wn
-jM
-kx
-lc
-lR
-mB
-nc
-nI
-oh
-oB
-lc
-py
-pW
-qM
-py
-oX
-ix
-jR
-pX
-lP
-ac
-ac
-ue
-uA
-vc
-vA
-wc
-wH
-xe
-wH
-yw
-zg
-zO
-Au
-Bk
-Fj
-wC
-xy
-Xe
-CE
-GW
-Ia
-As
-Jm
-JY
-KS
-Lz
-KS
-Mz
-zD
-ac
-ac
-ac
-ac
-ac
-ac
-fF
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aaf
+adO
+adO
+adO
+ade
+adO
+adO
+adO
+adO
+ahx
+ahy
+ahx
+ahx
+ahx
+aUy
+aVN
+aWb
+aWn
+ajM
+aNE
+alc
+alR
+amB
+anc
+anI
+aoh
+aoB
+alc
+apy
+apW
+aqM
+apy
+aoX
+aOa
+ajR
+apX
+alP
+aac
+aac
+aue
+akk
+avc
+avA
+awc
+awH
+axe
+awH
+aOq
+azg
+azO
+aAu
+aBk
+aFj
+awC
+axy
+aXe
+aCE
+aGW
+aIa
+aAs
+aJm
+aJY
+aKS
+aLz
+aKS
+aMz
+azD
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(74,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-dO
-bK
-cs
-dm
-dr
-dX
-ct
-eI
-hx
-UO
-iT
-kz
-kA
-UT
-VO
-jT
-Wr
-jM
-kx
-lc
-lS
-mC
-lc
-nJ
-lc
-lc
-lc
-gw
-gw
-gw
-gw
-oX
-sc
-jR
-pX
-gw
-ac
-ac
-ts
-uB
-vd
-vB
-ff
-xg
-xg
-xg
-xg
-xg
-xg
-xg
-xg
-xg
-xg
-xg
-xg
-Xk
-GX
-Ia
-At
-zD
-zD
-zD
-zD
-zD
-zD
-zD
-Ni
-Ni
-Kj
-Kj
-Ni
-Ni
-Kj
-Kj
-Ni
-Ni
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+adO
+abK
+acs
+adm
+adr
+aIF
+act
+aeI
+ahx
+aUO
+aiT
+akz
+akA
+aUT
+aVO
+ajT
+aWn
+ajM
+akx
+alc
+alS
+amC
+alc
+anJ
+alc
+alc
+alc
+agw
+agw
+agw
+agw
+aoX
+asc
+ajR
+apX
+agw
+aac
+aac
+ats
+auB
+avd
+avB
+aff
+axg
+axg
+axg
+axg
+axg
+axg
+axg
+axg
+axg
+axg
+axg
+axg
+aXk
+aGX
+aIa
+aqS
+azD
+azD
+azD
+azD
+azD
+azD
+azD
+aNi
+aNi
+aKj
+aKj
+aNi
+aNi
+aKj
+aKj
+aNi
+aNi
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(75,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-dO
-cF
-cG
-WY
-dN
-dY
-ct
-fV
-hx
-hA
-hZ
-iU
-hx
-Vd
-VP
-jT
-Ws
-jM
-kx
-ld
-lT
-mD
-nd
-ne
-ne
-ne
-lc
-pz
-fk
-qN
-gw
-rE
-ix
-jR
-pY
-gw
-ts
-ts
-ts
-uC
-ve
-vC
-we
-xg
-xU
-zi
-Aw
-xg
-CG
-EE
-ER
-Fn
-Ft
-GY
-Xf
-xg
-Xm
-HT
-Av
-Jn
-JZ
-KT
-KT
-KT
-KT
-MT
-KT
-KT
-KT
-KT
-KT
-KT
-MT
-KT
-KT
-OH
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+adO
+acF
+acG
+aWY
+adN
+adY
+act
+afV
+ahx
+ahA
+ahZ
+aiU
+ahx
+aVd
+aVP
+ajT
+aWs
+ajM
+akx
+ald
+alT
+amD
+aQd
+ane
+ane
+ane
+alc
+apz
+afk
+aqN
+agw
+arE
+aix
+ajR
+apY
+agw
+ats
+ats
+ats
+auC
+ave
+avC
+awe
+axg
+axU
+azi
+aAw
+axg
+aCG
+aEE
+aER
+aFn
+aFt
+aGY
+aXf
+axg
+aXm
+aHT
+aAv
+aJn
+aJZ
+aKT
+aKT
+aKT
+aKT
+aMT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aMT
+aKT
+aKT
+aOH
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(76,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-dO
-bL
-ct
-df
-dU
-eb
-ct
-gb
-hx
-XB
-ia
-iW
-kB
-Vy
-VQ
-jT
-Wt
-WH
-WU
-le
-lU
-mE
-ne
-ne
-ne
-ne
-lc
-iv
-fN
-qO
-gw
-rF
-ix
-jR
-pX
-gw
-ts
-tH
-uf
-uD
-ve
-vC
-wf
-xg
-xV
-zj
-Ay
-xg
-zT
-zT
-EU
-Bs
-Fu
-Hc
-Xf
-xg
-GZ
-Ia
-wf
-Jn
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+adO
+abL
+act
+adf
+adU
+aeb
+act
+agb
+ahx
+aef
+aia
+aiW
+akB
+aVy
+agB
+ajT
+aWt
+aWH
+aWU
+ale
+alU
+amE
+ane
+ane
+ane
+ane
+alc
+aiv
+afN
+aqO
+agw
+arF
+aix
+ajR
+apX
+agw
+ats
+atH
+auf
+auD
+ave
+avC
+awf
+axg
+axV
+azj
+aAy
+axg
+aLP
+azT
+aEU
+aBs
+aFu
+aHc
+aXf
+axg
+aGZ
+aIa
+awf
+aJn
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(77,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-dO
-bM
-ct
-ct
-ct
-ct
-ct
-gc
-hx
-gP
-hC
-eK
-kF
-Vz
-VR
-jT
-Wu
-WI
-kC
-lf
-lV
-mF
-nf
-lc
-lc
-lc
-lc
-gw
-gx
-gw
-gw
-gw
-jj
-sy
-pZ
-gw
-ts
-ts
-ts
-uE
-vf
-vD
-wg
-xg
-xW
-zm
-CM
-xg
-CH
-zT
-zT
-Fq
-Fv
-He
-Xg
-xg
-Ha
-Ia
-wf
-ts
-Kb
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+adO
+abM
+act
+act
+act
+act
+act
+agc
+ahx
+agP
+ahC
+aeK
+akF
+aVz
+aVR
+ajT
+aWu
+aWI
+akC
+alf
+alV
+amF
+anf
+alc
+alc
+alc
+alc
+agw
+agx
+agw
+agw
+agw
+ajj
+asy
+apZ
+agw
+ats
+ats
+ats
+auE
+avf
+avD
+awg
+axg
+axW
+azm
+aCM
+axg
+aCH
+azT
+azT
+aFq
+aFv
+aHe
+aXg
+axg
+aHa
+aIa
+awf
+ats
+aKb
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aLn
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(78,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-dO
-bN
-cx
-eC
-Xb
-fR
-fl
-eI
-hx
-hF
-iQ
-jS
-QX
-VA
-VS
-Wc
-Wv
-WJ
-kD
-lg
-lW
-mG
-ng
-nK
-oi
-oC
-oY
-pB
-gz
-gA
-gB
-gE
-he
-hl
-qa
-ha
-tt
-ha
-ha
-uF
-vg
-jX
-kx
-xg
-xg
-zP
-xg
-xg
-zT
-EP
-EG
-zT
-FU
-FU
-Xh
-xg
-Hb
-Ia
-wf
-Jn
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+adO
+abN
+acx
+aeC
+aXb
+adX
+afl
+aeI
+ahx
+ahF
+aiQ
+ajS
+aQX
+aVA
+aVS
+aWc
+aWv
+aWJ
+akD
+alg
+alW
+amG
+ahB
+anK
+aoi
+aoC
+aoY
+apB
+agz
+agA
+ajb
+agE
+ahe
+ahl
+aqa
+aha
+att
+aOb
+aha
+auF
+avg
+ajX
+akx
+axg
+axg
+azP
+axg
+axg
+azT
+aEP
+aEG
+azT
+aFU
+aFU
+aXh
+axg
+aHb
+aIa
+awf
+aJn
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(79,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-dO
-dO
-dO
-dO
-dO
-dO
-dO
-dO
-hx
-hV
-iR
-kw
-hx
-VB
-VT
-Wd
-iV
-WK
-kE
-lh
-lh
-mH
-nh
-nh
-nh
-nh
-oZ
-nh
-qb
-lh
-lh
-lh
-lh
-sz
-lh
-lh
-lh
-lh
-lh
-uG
-vh
-vE
-Ew
-xi
-wd
-zQ
-Az
-ro
-zT
-EH
-AA
-zT
-zT
-zT
-Xh
-xi
-GX
-Ia
-wf
-Jn
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+adO
+adO
+adO
+adO
+adO
+adO
+adO
+adO
+ahx
+ahV
+aiR
+akw
+ahx
+aVB
+aVT
+aWd
+aiV
+aWK
+akE
+alh
+alh
+amH
+anh
+anh
+anh
+anh
+aoZ
+anh
+aqb
+alh
+alh
+alh
+alh
+asz
+alh
+alh
+alh
+alh
+alh
+auG
+avh
+avE
+akx
+axi
+awd
+azQ
+aAz
+akM
+azT
+aEH
+aAA
+azT
+azT
+azT
+aXh
+axi
+aGX
+aIa
+awf
+aJn
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(80,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-aE
-bO
-cy
-bS
-dV
-ep
-fm
-Xd
-hx
-hX
-iS
-hx
-hx
-VC
-VU
-jT
-Ww
-jR
-WV
-li
-li
-li
-li
-li
-li
-li
-li
-li
-qc
-qQ
-qQ
-qQ
-qQ
-qQ
-qQ
-qQ
-qQ
-qQ
-qQ
-qQ
-vi
-Ep
-fd
-xk
-yy
-zR
-AA
-Bq
-zT
-EI
-EI
-zT
-Gw
-Hg
-Xi
-xk
-Xq
-HZ
-Iy
-ts
-Kc
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OJ
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aaE
+abO
+acy
+abS
+adV
+aep
+afm
+aXd
+ahx
+ahX
+aiS
+ahx
+ahx
+aVC
+aVU
+ajT
+aWw
+ajR
+aWV
+ali
+ali
+ali
+ali
+ali
+ali
+ali
+aOT
+ali
+baQ
+baJ
+baJ
+baJ
+baJ
+baJ
+avl
+aEo
+baH
+baL
+baL
+baL
+bby
+aEp
+afd
+axk
+ayy
+azR
+aAA
+aBq
+azT
+aEI
+aEI
+azT
+aGw
+aHg
+aXi
+axk
+aXq
+aHZ
+aIy
+ats
+aKD
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+avs
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(81,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ad
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-hx
-hx
-hx
-hx
-WX
-VD
-Xa
-jT
-Wn
-jR
-kG
-lj
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-lX
-uH
-vk
-fe
-fg
-xS
-yz
-zS
-yz
-Br
-CJ
-CJ
-EV
-zT
-zT
-zT
-Xj
-xS
-Xr
-Xu
-wf
-Jn
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aaE
+aaE
+aaE
+aaE
+aaE
+aaE
+aaE
+aaE
+aaE
+ahx
+ahx
+ahx
+ahx
+aWX
+aVD
+aXa
+ajT
+aWn
+ajR
+akn
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+asT
+aYj
+asT
+alX
+alX
+auH
+bbA
+afe
+afg
+axS
+ayz
+azS
+ayz
+aBr
+aCJ
+aCJ
+aEV
+azT
+azT
+azT
+aXj
+axS
+aXr
+aXu
+awf
+aJn
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(82,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-aE
-bk
-bP
-cu
-bS
-ds
-aE
-eD
-fW
-gJ
-hD
-ic
-aE
-Tr
-aE
-ep
-We
-Wn
-jR
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jM
-oG
-xT
-yA
-zW
-Fr
-EJ
-Gx
-Xo
-Fc
-Fr
-Fr
-Fr
-Fr
-Xl
-Xs
-Xv
-Iz
-Jn
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aaE
+abk
+abP
+acu
+abS
+ads
+aaE
+aeD
+afW
+agJ
+ahD
+aic
+aaE
+aTr
+aaE
+aep
+aWe
+aWn
+ajR
+akn
+alj
+all
+awj
+alj
+aZk
+aZw
+aZJ
+alj
+baf
+bar
+aPi
+baX
+bab
+bbC
+bbE
+asT
+aPk
+asT
+alY
+alY
+auI
+bbA
+ajM
+aoG
+axT
+ayA
+azW
+aFr
+aEJ
+aGx
+aXo
+aFc
+aFr
+aFr
+aFr
+aFr
+aXl
+aXs
+aXv
+aIz
+aJn
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(83,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-aF
-bl
-bQ
-cv
-cM
-dt
-dZ
-eE
-fX
-gK
-hE
-id
-iX
-DI
-aE
-hd
-hS
-Wx
-jR
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jM
-oI
-xk
-zh
-zV
-zT
-Bt
-Eu
-EK
-Fd
-Fs
-zT
-zT
-Xx
-xg
-Xt
-Ia
-Iz
-ts
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OK
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aaF
+abl
+abQ
+acv
+acM
+adt
+adZ
+aeE
+afX
+agK
+ahE
+aid
+aiX
+aDI
+aaE
+ahd
+ahS
+aWx
+ajR
+akn
+alj
+aqc
+awk
+axf
+aZl
+aZx
+aZL
+aZW
+bag
+bas
+aZU
+aZV
+aXW
+bbD
+bbH
+asT
+aYb
+asT
+alY
+alY
+auI
+bbA
+ajM
+aoI
+axk
+azh
+azV
+azT
+aBt
+aEu
+aEK
+aFd
+aFs
+azT
+aMk
+aXx
+axg
+aXt
+aIa
+aOJ
+ats
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOK
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(84,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-aF
-bm
-bR
-bR
-da
-bS
-aE
-eF
-fY
-gL
-aE
-ie
-iY
-SL
-aE
-aE
-aE
-Wz
-jR
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jM
-pb
-xg
-xg
-xg
-Hd
-Bv
-Ez
-EO
-Fe
-Fs
-Xw
-xg
-xg
-xg
-Hh
-Ia
-Iz
-Jn
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aaF
+abm
+abR
+abR
+ada
+abS
+aaE
+aeF
+afY
+agL
+aaE
+aie
+aiY
+aSL
+aaE
+aaE
+aaE
+aWz
+ajR
+akn
+alj
+awi
+awl
+alj
+aZm
+aZy
+aZM
+alj
+aiJ
+bat
+baG
+bba
+aYn
+asT
+asT
+asT
+aYj
+asT
+asT
+asT
+asT
+bbF
+ajM
+apb
+axg
+axg
+axg
+aHd
+aBv
+aEz
+aEO
+aFe
+aFs
+aXw
+axg
+axg
+axg
+aHh
+aIa
+aIz
+aJn
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(85,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-aF
-bn
-bS
-cw
-db
-dL
-aE
-eZ
-fZ
-gM
-aE
-if
-iZ
-Tw
-VE
-VV
-Wf
-WA
-WL
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jM
-pe
-EA
-hd
-xg
-zT
-CF
-EC
-XC
-EC
-CF
-XE
-xg
-tH
-Gy
-Hf
-Ia
-Iz
-Jn
-Ka
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aaF
+abn
+abS
+acw
+adb
+adL
+aaE
+aeZ
+afZ
+agM
+aaE
+aif
+aiZ
+aTw
+aVE
+aVV
+aWf
+aWA
+aWL
+aNp
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+alj
+bai
+aZx
+baK
+aZx
+aZj
+asT
+aEe
+aXY
+aYb
+aYs
+aYx
+aYE
+baq
+bbF
+ajM
+ape
+aEA
+ahd
+axg
+azT
+aCF
+aEC
+aXC
+aEC
+aCF
+aXE
+axg
+atH
+aGy
+aHf
+aIa
+aIz
+aJn
+aKa
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(86,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-aF
-bo
-bS
-aE
-ag
-ag
-ag
-fa
-ag
-ag
-ag
-ag
-eG
-eG
-eG
-eG
-Wg
-WB
-jR
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jM
-pf
-wJ
-wJ
-wJ
-Bl
-wJ
-ED
-EQ
-Xp
-AB
-AB
-AB
-AB
-AB
-Hi
-HV
-IA
-ts
-Kb
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-OI
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aaF
+abo
+abS
+aaE
+aag
+aag
+aag
+afa
+aag
+aag
+aag
+aag
+aeG
+aeG
+aeG
+aeG
+aWg
+aWB
+ajR
+akn
+aYO
+aZi
+awn
+atI
+aYP
+aYT
+aYT
+alj
+baj
+bau
+baM
+bbb
+aZr
+aBo
+aEg
+aYb
+aYb
+aYp
+aYy
+aYF
+baw
+bbF
+ajM
+apf
+awJ
+awJ
+awJ
+aBl
+awJ
+aED
+aEQ
+aEE
+aAB
+aAB
+aAB
+aAB
+aAB
+aHi
+aHV
+aIA
+ats
+aKb
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aOI
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(87,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-aE
-bx
-bT
-aE
-dc
-dM
-ea
-fb
-ga
-gN
-ag
-hW
-ja
-TK
-VF
-VW
-Wh
-WC
-WM
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jM
-pD
-wN
-EF
-EL
-Bm
-wJ
-wJ
-wJ
-wJ
-AB
-CL
-Fw
-FV
-AB
-Hj
-HW
-Iz
-Jn
-Kd
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-KV
-OL
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aaE
+abx
+abT
+aaE
+adc
+adM
+aea
+afb
+aga
+aec
+aag
+ahW
+aja
+aTK
+aVF
+aVW
+aWh
+aWC
+aWM
+baz
+aYV
+aEj
+awn
+aOU
+aYQ
+aYU
+aYU
+alj
+aZG
+aZH
+aZH
+aZH
+aYc
+asT
+bac
+aYb
+aYb
+aYp
+aYz
+aYG
+baw
+bbF
+ajM
+apD
+awN
+aEF
+aEL
+aBm
+awJ
+awJ
+awJ
+awJ
+aAB
+aCL
+aut
+aFV
+aAB
+aHf
+aHW
+aIz
+aJn
+aKd
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aOL
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(88,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-aQ
-aZ
-aZ
-SR
-Tj
-Uz
-ag
-hY
-ig
-gj
-gX
-Vn
-eG
-jc
-jU
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-Eq
-pE
-EB
-xm
-xX
-xm
-zp
-zX
-AC
-Fg
-Ch
-CP
-Fx
-FW
-Gz
-Hk
-HX
-Iz
-Jn
-Ke
-Ke
-Ke
-Ke
-Ke
-MU
-Ke
-Ke
-NG
-NN
-Ke
-Ke
-MU
-Ke
-Ke
-Ke
-Kj
-Ni
-Ni
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aaQ
+aaZ
+aaZ
+aSR
+aTj
+abv
+aag
+ahY
+aig
+agj
+agX
+aVn
+aeG
+ajc
+ajU
+akn
+aYO
+aEv
+awn
+aJi
+aYR
+aYR
+aYX
+aYZ
+aYR
+aYR
+aYR
+aZe
+aYR
+aEa
+bad
+aYb
+aYb
+aYt
+aYA
+aYH
+baw
+bbF
+aEq
+apE
+aEB
+axm
+axX
+axm
+azp
+azX
+aAC
+aFg
+aCh
+aCP
+aFx
+aFW
+aGz
+aHk
+aHX
+aIz
+aJn
+aKe
+aKe
+aKe
+aKe
+aKe
+aMU
+aKe
+aKe
+aNG
+aNN
+aKe
+aKe
+aMU
+aKe
+aKe
+aKe
+aKj
+aNi
+aNi
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(89,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ag
-ar
-aD
-ag
-ao
-eH
-dz
-aH
-aR
-ba
-bq
-cb
-cN
-UA
-gn
-ib
-fz
-gk
-gX
-hK
-UU
-jd
-jV
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-vG
-kx
-wJ
-xn
-EM
-ES
-wJ
-zY
-AD
-Fk
-AB
-CQ
-zn
-FX
-AB
-Hl
-HY
-IB
-ts
-Kf
-Kf
-Kj
-Kg
-Ke
-Kj
-Ke
-Kg
-NH
-NH
-Kg
-NX
-Kj
-Ke
-Kg
-Kg
-Kj
-Pp
-PL
-Kj
-Kj
-Ef
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aag
+aar
+aaD
+aag
+aao
+aeH
+abh
+aaH
+aaR
+aba
+abq
+acb
+acN
+aUA
+agn
+afF
+afz
+agk
+agX
+ahK
+aUU
+ajd
+ajV
+akn
+aYO
+aZs
+awI
+aEb
+aSE
+aYS
+aYh
+aYS
+aYY
+aZa
+aZc
+ajB
+aPe
+aZh
+aZA
+aZO
+aYo
+aYu
+aYI
+aPC
+bay
+bbF
+avG
+aNE
+awJ
+axn
+aEM
+aES
+awJ
+azY
+aAD
+aFk
+aAB
+aCQ
+azn
+aFX
+aAB
+aHl
+aHY
+aIB
+ats
+aKf
+aKf
+aKj
+aKg
+aKe
+aKj
+aKe
+aKg
+aNH
+aNH
+aKg
+aNX
+aKj
+aKe
+aKg
+aLL
+aKj
+aLa
+aPL
+aKj
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(90,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ag
-at
-at
-ag
-ap
-aZ
-aA
-aI
-aS
-aI
-aS
-cc
-cO
-UB
-gn
-iB
-UV
-gl
-gX
-hL
-UU
-je
-jW
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jR
-Ew
-wP
-wP
-wP
-wP
-wP
-wP
-AE
-wP
-wP
-wP
-wP
-wP
-GA
-Hm
-HZ
-IC
-Jo
-Kg
-Kg
-LA
-Kg
-Ke
-MV
-Ke
-Kg
-Kg
-Kg
-Kg
-Ke
-Oc
-Ke
-Kg
-Kg
-Kj
-Pq
-PM
-PZ
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aag
+aat
+aIR
+aag
+aad
+aaZ
+aaA
+aaI
+aaS
+aaI
+aaS
+acc
+acO
+abw
+agn
+aiB
+aUV
+agl
+agX
+ahL
+aUU
+aje
+ajW
+akn
+alo
+alo
+alo
+ayx
+ayx
+ayx
+ayx
+ayx
+aZv
+ayx
+ayx
+ayx
+ayx
+asT
+ajH
+aYf
+bae
+aYv
+aYB
+aYJ
+baw
+bbF
+ajR
+akx
+awP
+awP
+awP
+awP
+awP
+awP
+aAE
+awP
+awP
+awP
+awP
+awP
+aGA
+aHm
+aHZ
+aIC
+aJo
+aKg
+aKg
+aLA
+aKg
+aKe
+aMV
+aKe
+aKg
+aKg
+aKg
+aKg
+aKe
+aOc
+aKe
+aKg
+aKg
+aKj
+aPq
+aPM
+aPZ
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(91,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ah
-Vx
-aZ
-Vv
-dw
-aZ
-aB
-aJ
-aT
-bb
-SM
-SS
-cP
-dy
-ee
-eL
-fB
-gm
-Vk
-hM
-Vt
-jf
-jX
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jR
-Ex
-wP
-xo
-xY
-yC
-zr
-zZ
-AF
-Bx
-Ci
-yC
-Fy
-FY
-wP
-Hn
-Ia
-Iz
-Jn
-Kh
-KW
-Kf
-Mb
-MA
-MW
-MA
-Nx
-Nx
-Nx
-Nx
-MA
-MW
-MA
-Ou
-Nx
-Pc
-Pr
-PM
-Qa
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aah
+aVx
+aaZ
+aVv
+adw
+aaZ
+aaB
+aaJ
+aaT
+abb
+aSM
+aSS
+acP
+ady
+aee
+aeL
+afB
+agm
+aVk
+ahM
+aVt
+ajf
+ajX
+akn
+alk
+aZt
+alk
+ayx
+aZn
+aYq
+aZN
+aPa
+aZY
+bav
+baN
+bbc
+bbp
+asT
+aXV
+aYg
+bae
+aYb
+aYC
+aYK
+baw
+bbF
+ajR
+aEx
+awP
+axo
+axY
+ayC
+akX
+azZ
+aAF
+aBx
+aCi
+ayC
+aFy
+aFY
+awP
+aHn
+aIa
+aIz
+aJn
+aKh
+aKW
+aKf
+aMb
+aMA
+aMW
+aMA
+aNx
+aNx
+aNx
+aNx
+aMA
+aMW
+aMA
+aOu
+aNx
+aPc
+aPr
+aPM
+aQa
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(92,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ah
-as
-cd
-Vw
-aZ
-aZ
-aC
-aK
-aT
-bc
-SN
-ST
-cQ
-ec
-UI
-eM
-gY
-fC
-gY
-hN
-ii
-iV
-jY
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-vH
-wq
-wQ
-xp
-xZ
-yD
-yD
-yD
-AG
-yD
-yD
-yD
-xZ
-FZ
-wR
-Ho
-Ib
-ID
-Jp
-Ki
-KX
-LB
-Mc
-MB
-MX
-Ke
-Kg
-Kg
-Kg
-Kg
-Ke
-Od
-Ke
-Ov
-Kg
-Kj
-Ps
-PM
-Qa
-Pb
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aah
+aas
+acd
+aVw
+aaZ
+aaZ
+aaC
+aaK
+aaT
+abc
+aSN
+aST
+acQ
+adz
+aUI
+aeM
+agY
+afC
+agY
+ahN
+aii
+aiV
+ajY
+akn
+bbq
+aZu
+bbu
+ayx
+aZo
+aYW
+aZb
+aZz
+aZT
+baa
+bal
+bam
+bbw
+aEc
+aYm
+bak
+aZI
+aYb
+aYy
+aYL
+baw
+bbF
+avH
+awq
+awQ
+axp
+axZ
+ayD
+ayD
+ayD
+aAG
+ayD
+ayD
+ayD
+axZ
+aFZ
+awR
+aHo
+aIb
+aID
+aJp
+aKi
+aKX
+aLB
+aMc
+aMB
+aug
+aKe
+aKg
+aKg
+aKg
+aKg
+aKe
+aOd
+aKe
+aOv
+aKg
+aKj
+aPs
+aPM
+aQa
+aPb
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(93,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ag
-ag
-aL
-aZ
-aZ
-aZ
-go
-QF
-RN
-Sp
-SO
-SU
-Tl
-dA
-ag
-eN
-UW
-Ve
-Vl
-Vo
-ij
-jg
-jX
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jR
-wp
-wR
-xq
-ya
-yE
-yE
-yE
-AH
-yE
-yE
-yE
-ya
-Ga
-wR
-Ho
-Ia
-Iz
-ts
-Kj
-Kj
-Kj
-Md
-MC
-Kj
-Nj
-Ny
-NI
-NO
-Ny
-Ke
-Kj
-Ke
-Ov
-Kg
-Kj
-Pt
-PM
-Kj
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aag
+aag
+aaL
+aaZ
+aaZ
+aaZ
+ago
+aQF
+aRN
+aSp
+aSO
+aSU
+aTl
+adA
+aag
+aeN
+aUW
+aVe
+aVl
+aVo
+aij
+ajg
+ajX
+akn
+alk
+bbs
+aNo
+ayx
+aZp
+aZB
+aZP
+aZB
+aZC
+aZC
+baU
+ban
+bbx
+asT
+aXX
+aYi
+aYp
+aYw
+aYD
+aYM
+baA
+bbF
+ajR
+awp
+awR
+axq
+aya
+ayE
+ayE
+ayE
+aAH
+ayE
+ayE
+ayE
+aya
+aGa
+awR
+aHo
+aIa
+aIz
+ats
+aKj
+aKj
+aKj
+aMd
+aMC
+aKj
+aNj
+aNy
+aNI
+aNO
+aNy
+aKe
+aKj
+aKe
+aOv
+aKg
+aKj
+aPt
+aPM
+aKj
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(94,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ag
-aU
-ce
-dx
-fx
-gZ
-RG
-fx
-Sq
-SP
-SV
-Tm
-SP
-SP
-SP
-UX
-Vf
-Vm
-eG
-eG
-jh
-jX
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jR
-wp
-wR
-xr
-ya
-yF
-yF
-yF
-AI
-yF
-yF
-yF
-ya
-Gb
-wR
-Ho
-Ia
-IE
-ts
-Kk
-KY
-Kj
-Me
-MD
-MY
-Ke
-Ke
-NG
-NN
-Ke
-Ke
-MY
-Ke
-Ow
-Ke
-Kj
-Pu
-Pu
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aag
+aaU
+ace
+aap
+afx
+agZ
+aRG
+afx
+aSq
+aSP
+aSV
+aTm
+aSP
+aSP
+aSP
+aUX
+aVf
+aVm
+aeG
+aeG
+ajh
+ajX
+akn
+alk
+alk
+bdD
+ayx
+aZq
+aZC
+aZC
+aZC
+aZC
+bax
+baV
+bao
+bap
+asT
+asT
+asT
+aYr
+asT
+asT
+asT
+asT
+bbF
+ajR
+awp
+awR
+axr
+aya
+ayF
+ayF
+ayF
+aAI
+ayF
+ayF
+ayF
+aya
+aGb
+awR
+aHo
+aIa
+aIE
+ats
+aKk
+aKY
+aKj
+aMe
+aMD
+aMY
+aKe
+aKe
+aNG
+aNN
+aKe
+aKe
+aMY
+aKe
+aOw
+aKe
+aKj
+aPu
+aPu
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(95,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-az
-bd
-cf
-ed
-fy
-hO
-RK
-Sb
-Su
-SP
-SZ
-Tn
-UC
-UJ
-UP
-UY
-Vg
-SP
-hd
-hS
-ji
-jX
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-uI
-vk
-jR
-wp
-wR
-xs
-yb
-ya
-ya
-Aa
-AJ
-By
-ya
-ya
-yb
-Gc
-wR
-Ho
-Ia
-IF
-ts
-ts
-ts
-ts
-Mf
-KT
-KT
-KT
-KT
-KT
-KT
-KT
-KT
-Oe
-Oe
-Ox
-Oe
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aQW
+aaz
+abd
+acf
+aed
+afy
+ahO
+aRK
+aSb
+aSu
+aSP
+aSZ
+aTn
+aUC
+aUJ
+aUP
+aUY
+aVg
+aSP
+ahd
+ahS
+aji
+ajX
+akn
+alk
+bbt
+alk
+ayx
+ayx
+aZD
+aZQ
+aZQ
+aZQ
+aZQ
+aZQ
+aln
+ayx
+alo
+aqO
+asT
+aYp
+asT
+alY
+alY
+auI
+bbA
+ajR
+awp
+awR
+axs
+ayb
+aya
+aya
+aAa
+aAJ
+aBy
+aya
+aya
+ayb
+aGc
+awR
+aHo
+aIa
+aIz
+ats
+ats
+ats
+ats
+aMf
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aOe
+aOe
+aOx
+aOe
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(96,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-az
-bp
-cR
-ed
-fA
-ih
-RK
-Sk
-SE
-SP
-Tb
-To
-UD
-UK
-UQ
-UZ
-Vh
-SP
-gw
-gw
-Wi
-jX
-kG
-lk
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lY
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-uJ
-vk
-jR
-wr
-wP
-xt
-yc
-yc
-zs
-Ab
-AK
-Bz
-Cj
-CR
-yc
-Gd
-wP
-Hp
-Ic
-IG
-Jn
-AN
-AN
-Jn
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-Kj
-Kj
-Oy
-Kj
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aaz
+abp
+acR
+aed
+afA
+aih
+aRK
+aSk
+asA
+aSP
+aTb
+aTo
+aUD
+aUK
+aUQ
+aUZ
+aVh
+aSP
+agw
+agw
+aWi
+ajX
+akn
+bbq
+aZu
+bbu
+bbv
+ayx
+aZE
+aZR
+aZR
+aZR
+aZR
+aZR
+bbi
+ayx
+aqO
+aqO
+asT
+aPp
+asT
+alY
+alY
+auI
+bbA
+ajR
+awr
+awP
+axt
+ayc
+ayc
+azs
+aAb
+aAK
+aBz
+aCj
+aCR
+ayc
+aGd
+awP
+aHp
+aIc
+aIG
+aJn
+aAN
+aAN
+aJn
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKU
+aKj
+aKj
+aOy
+aKj
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(97,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-az
-br
-du
-ed
-fD
-Dp
-RK
-Sm
-SG
-SP
-Tc
-Tp
-UE
-UL
-UR
-Va
-Vi
-SP
-Vq
-Vu
-ix
-jX
-kG
-ll
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-lZ
-Eb
-Ec
-Ee
-Eg
-Ej
-Ee
-Eg
-Ej
-Ee
-Eg
-Eo
-jR
-wp
-wP
-xu
-wR
-wR
-zt
-Ac
-wR
-BA
-zt
-wR
-wR
-wP
-wP
-Hq
-Id
-Iz
-Jn
-AN
-AN
-Jn
-KU
-ME
-ME
-ME
-Nz
-ME
-ME
-ME
-NY
-Kj
-Oj
-Oz
-OM
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aaz
+abr
+adu
+aed
+afD
+aDp
+aRK
+aSm
+aSG
+aSP
+aTc
+aTp
+aUE
+aUL
+aUR
+aVa
+aVi
+aSP
+aVq
+aVu
+aix
+ajX
+akn
+alk
+bbs
+alk
+alk
+ayx
+aZF
+aqd
+aqd
+aqd
+aqd
+aqd
+bbj
+ayx
+alo
+alo
+asT
+aYr
+asT
+alZ
+alZ
+auJ
+bbA
+ajR
+awp
+awP
+axu
+awR
+awR
+azt
+aAc
+awR
+aBA
+azt
+awR
+awR
+awP
+awP
+aHq
+aId
+aIz
+aJn
+aAN
+aAN
+aJn
+aKU
+aME
+aME
+aME
+aNz
+aME
+aME
+aME
+aNY
+aKj
+aOj
+aOz
+aOM
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(98,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-az
-bs
-dv
-ed
-fE
-Gm
-RK
-Sn
-SK
-SP
-Td
-Tq
-UF
-UM
-US
-Vb
-Vj
-SP
-Vr
-Vu
-ix
-jX
-kD
-lm
-lm
-lm
-lm
-lm
-lm
-lm
-lm
-lm
-qd
-qR
-qR
-Ed
-Ed
-sA
-sT
-sT
-sT
-tI
-ug
-ug
-vl
-vI
-ws
-wS
-xv
-xv
-xv
-zu
-Ad
-AL
-BB
-Ck
-CS
-Fz
-Ge
-GB
-Hr
-Ae
-Ax
-Jn
-AN
-AN
-Jn
-KU
-MF
-MZ
-Nk
-Nl
-NJ
-NP
-wi
-KU
-bg
-Ok
-OA
-ON
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaz
+abs
+adv
+aed
+afE
+aGm
+aRK
+aSn
+aSK
+aSP
+aTd
+aTq
+aUF
+aeA
+aUS
+aJl
+aVj
+aSP
+aVr
+aVu
+aix
+ajX
+akG
+aha
+aha
+aha
+aha
+alm
+apS
+aqQ
+aqR
+aqR
+aZS
+aZZ
+anL
+bdX
+avi
+avk
+aEd
+baE
+baI
+baR
+baT
+baT
+bcY
+avI
+aws
+awS
+axv
+axv
+axv
+alz
+aAd
+aAL
+aBB
+aCk
+aCS
+aFz
+aGe
+aGB
+aHr
+aAe
+aAx
+aJn
+aAN
+aAN
+aJn
+aKU
+aMF
+aMZ
+aNk
+aNl
+aNJ
+aNP
+azu
+aKU
+abg
+aOk
+aOA
+aON
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(99,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-az
-ca
-ca
-ed
-gi
-gi
-RK
-So
-So
-SP
-SP
-SP
-SP
-SP
-SP
-SP
-SP
-SP
-gw
-gw
-ix
-jZ
-kH
-kH
-kH
-kH
-ni
-nL
-oj
-nL
-pa
-nL
-qe
-nL
-nL
-nL
-nL
-sB
-nL
-td
-nL
-tJ
-nL
-nL
-vm
-vJ
-wt
-wT
-wa
-yd
-yG
-yG
-Ae
-yG
-yG
-Cl
-CT
-yG
-yG
-vZ
-Hs
-Ie
-IH
-Jq
-Kl
-KZ
-Jn
-KU
-MF
-Na
-Nl
-Nl
-NK
-NP
-wi
-KU
-bg
-Ok
-OB
-OO
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaz
+aca
+aca
+aed
+agi
+agi
+aRK
+aSo
+aSo
+aSP
+aSP
+aSP
+aSP
+aSP
+aSP
+aSP
+aSP
+aSP
+agw
+agw
+aix
+ajZ
+akH
+akH
+akH
+akH
+ani
+anL
+aoj
+anL
+apa
+anL
+aqe
+anL
+anL
+anL
+anL
+asB
+bbB
+atd
+anL
+atJ
+anL
+anL
+avm
+avJ
+awt
+awT
+awa
+ayd
+ayG
+ayG
+aAe
+ayG
+ayG
+aCl
+aCT
+ayG
+ayG
+avZ
+aHs
+aIe
+aIH
+aJq
+aKl
+aKZ
+aJn
+aKU
+aMF
+aNa
+aNl
+aNl
+aNK
+aNP
+azu
+aKU
+abg
+aOk
+aOB
+aOO
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(100,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Tg
-Ts
-UG
-UN
-UG
-Vc
-UG
-UG
-Vs
-gw
-ix
-ka
-kI
-ln
-ma
-mI
-nj
-nM
-ok
-oD
-pd
-pC
-qf
-qS
-qU
-rG
-pS
-sC
-pS
-jX
-tu
-tK
-uh
-uK
-vn
-vn
-vn
-wU
-xw
-ye
-xw
-xw
-Af
-xw
-xw
-xw
-CU
-CU
-Gf
-GC
-Ht
-If
-II
-Jr
-Km
-La
-Jn
-KU
-MF
-Nb
-Nm
-Nl
-NK
-NP
-wi
-KU
-bg
-Ok
-OB
-OP
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aTg
+aTs
+aUG
+aUN
+aUG
+aVc
+aUG
+aUG
+aVs
+agw
+aix
+aka
+akI
+aMX
+ama
+amI
+anj
+anM
+aok
+aoD
+apd
+apC
+aqf
+aOT
+aqU
+arG
+apS
+asC
+apS
+ajX
+atu
+atK
+auh
+auK
+aOg
+avn
+avn
+awU
+axw
+aye
+axw
+axw
+aAf
+axw
+axw
+axw
+aCU
+aCU
+aGf
+aGC
+aHt
+aIf
+aII
+aJr
+aKm
+aOQ
+aJn
+aKU
+aMF
+aNb
+aNm
+aNl
+aNK
+aNP
+azu
+aKU
+abg
+aOk
+aOB
+aOP
+aKj
+aQf
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(101,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-be
-be
-be
-be
-UH
-be
-be
-be
-gw
-gw
-gw
-gw
-jj
-kb
-kJ
-lo
-mb
-io
-nk
-io
-oE
-oF
-oF
-gw
-qg
-qT
-pc
-rH
-sh
-sD
-sh
-te
-tv
-tL
-sh
-uL
-vo
-vK
-vK
-rJ
-vK
-sF
-rJ
-zv
-rJ
-vK
-vK
-vK
-vK
-vK
-rJ
-rJ
-Hu
-Ig
-rJ
-rJ
-rJ
-rJ
-rJ
-KU
-ME
-ME
-ME
-ME
-ME
-ME
-ME
-KU
-bg
-Ok
-OC
-OQ
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abe
+abe
+abe
+abe
+aUH
+abe
+abe
+abe
+agw
+agw
+agw
+agw
+ajj
+akb
+akJ
+alo
+amb
+aio
+ank
+aio
+aoE
+aoF
+aoF
+agw
+aqg
+aqT
+apc
+arH
+ash
+asD
+ash
+ate
+atv
+atL
+ash
+auL
+avo
+avK
+avK
+arJ
+avK
+asF
+arJ
+azv
+arJ
+avK
+avK
+avK
+avK
+avK
+arJ
+arJ
+aHu
+aIg
+arJ
+arJ
+arJ
+arJ
+arJ
+aKU
+aME
+aME
+aME
+aME
+aME
+aME
+aME
+aKU
+abg
+aOk
+aOC
+axB
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(102,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bf
-bt
-cg
-cS
-cg
-ef
-eO
-fG
-gp
-ha
-hP
-il
-jk
-ka
-kK
-lp
-mc
-io
-nl
-nN
-ol
-lY
-lY
-gw
-qh
-gw
-pc
-rI
-si
-sE
-sU
-tf
-tw
-tM
-ui
-uM
-rJ
-vL
-wu
-wV
-xx
-ti
-AR
-BG
-EY
-sX
-sX
-AO
-sX
-sX
-Gg
-GD
-Hv
-Ih
-IJ
-Js
-Kn
-rJ
-rJ
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-Kj
-Ol
-Ol
-Ol
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abf
+abt
+acg
+acS
+acg
+acg
+aeO
+afG
+agp
+aha
+ahP
+ail
+ajk
+aka
+akK
+alp
+amc
+aio
+anl
+anN
+aol
+alY
+alY
+agw
+aqh
+agw
+apc
+arI
+asi
+asE
+asU
+atf
+atw
+atM
+aui
+auM
+arJ
+avL
+awu
+awV
+axx
+ati
+aAR
+aBG
+aEY
+asX
+asX
+alM
+asX
+asX
+aGg
+aGD
+aHv
+aIh
+aIJ
+aJs
+aKn
+arJ
+arJ
+aKU
+aKU
+aKU
+aKU
+aKI
+aKU
+aKU
+aKU
+aKU
+aKj
+aOl
+aOl
+aOl
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(103,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bf
-bu
-ch
-be
-dB
-eg
-eP
-fH
-gq
-hb
-hQ
-im
-hb
-kc
-kL
-lq
-lq
-mJ
-nm
-nO
-ol
-lZ
-lZ
-pc
-qi
-pc
-pc
-rJ
-rJ
-sF
-sV
-tg
-tx
-sF
-rJ
-rJ
-rJ
-vM
-wu
-uk
-sX
-sX
-sX
-sX
-sX
-AP
-BD
-Co
-BC
-FA
-Gh
-sX
-sX
-Ii
-IK
-Jt
-Jt
-Jt
-Jt
-Jt
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-Kj
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abf
+abu
+ach
+abe
+adB
+aeg
+aeP
+afH
+agq
+ahb
+ahQ
+aim
+ahb
+akc
+akL
+alq
+alq
+amJ
+anm
+anO
+aol
+alZ
+alZ
+apc
+aqi
+apc
+apc
+arJ
+arJ
+asF
+asV
+atg
+atx
+asF
+arJ
+arJ
+arJ
+avM
+awu
+auk
+asX
+asX
+asX
+asX
+asX
+aAP
+aBD
+aCo
+aBC
+aFA
+aGh
+asX
+asX
+aIi
+aIK
+aJt
+aJt
+aJt
+aJt
+aJt
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aKj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(104,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-be
-be
-be
-be
-ci
-eh
-eQ
-fG
-gr
-hc
-hR
-in
-DV
-kd
-kM
-lr
-md
-io
-nn
-nP
-om
-XZ
-Yd
-Yk
-qj
-oH
-rp
-rK
-sj
-sG
-sW
-sG
-ty
-tN
-uj
-uN
-vp
-vp
-vp
-vp
-vp
-yf
-yI
-vp
-Ah
-AP
-BC
-BC
-CW
-FA
-Gi
-GE
-Hw
-Ij
-IL
-Jt
-Ko
-Lb
-LC
-Jt
-ac
-ac
-ac
-ac
-ac
-kk
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abe
+abe
+abe
+abe
+aci
+aeh
+aeQ
+afG
+agr
+ahc
+ahR
+ain
+aDV
+akd
+agN
+alr
+amd
+aio
+ann
+anP
+aom
+aXZ
+aYd
+aYk
+aqj
+aoH
+arp
+arK
+asj
+asG
+asW
+asG
+aty
+atN
+auj
+auN
+avp
+avp
+avp
+avp
+avp
+ayf
+ayI
+avp
+aAh
+aAP
+aBC
+aBC
+aCW
+aFA
+aGi
+aGE
+aHw
+aIj
+aro
+aJt
+aKo
+aLb
+aLC
+aJt
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(105,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bf
-bt
-cg
-cT
-cg
-eh
-eR
-be
-gs
-gs
-gw
-io
-io
-io
-io
-io
-io
-io
-io
-nQ
-ol
-Ya
-Ye
-Yl
-qk
-pg
-pc
-rL
-sk
-sH
-sX
-th
-Ek
-El
-Em
-En
-Em
-Ek
-Ek
-Ek
-Ek
-EN
-ET
-EW
-Ai
-vp
-BE
-Cp
-CX
-FB
-Gj
-GF
-Hx
-Ik
-IM
-Jt
-Kp
-Lc
-LD
-Jt
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abf
+abt
+acg
+acT
+acg
+aeh
+aeR
+abe
+ags
+ags
+agw
+aio
+aio
+aio
+aio
+aio
+aio
+aio
+aio
+anQ
+aol
+aYa
+aYe
+aYl
+aqk
+apg
+apc
+arL
+ask
+asH
+asX
+ath
+aEk
+aEl
+aEm
+aEn
+aEm
+aEk
+aEk
+aEk
+aEk
+aEN
+aET
+aEW
+aAi
+avp
+aBE
+aCp
+aCX
+aFB
+aGj
+aGF
+aHx
+aIk
+aIM
+aJt
+aKp
+aLc
+aLD
+aJt
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(106,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bf
-bu
-ch
-be
-dD
-eh
-eS
-be
-ac
-ac
-ac
-io
-jl
-ke
-kN
-ls
-me
-io
-no
-nR
-on
-oJ
-oJ
-oJ
-oJ
-oJ
-oJ
-rM
-sl
-sH
-sX
-ti
-sX
-tO
-ul
-uP
-uk
-sX
-sX
-sX
-sX
-yg
-yJ
-EX
-Ek
-Ek
-EN
-ET
-Ek
-FC
-sX
-GG
-Hy
-Il
-IN
-Ju
-Kq
-Ld
-LE
-Jt
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abf
+abu
+ach
+abe
+adD
+aeh
+aeS
+abe
+aac
+aac
+aac
+aio
+ajl
+ake
+akN
+als
+ame
+aio
+ano
+anR
+aon
+aoJ
+aoJ
+aoJ
+aoJ
+aoJ
+aoJ
+arM
+auP
+asH
+asX
+ati
+asX
+atO
+auk
+auP
+auk
+asX
+asX
+asX
+asX
+ayg
+ayJ
+aEX
+aEk
+aEk
+aEN
+aET
+aEk
+aFC
+asX
+aGG
+aHy
+aIl
+aIN
+aJu
+aKq
+aLd
+aLE
+aJt
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(107,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-be
-be
-be
-be
-dE
-ei
-eT
-be
-ac
-ac
-ac
-io
-jm
-kf
-kf
-kf
-mf
-mK
-np
-nS
-oo
-oK
-ph
-pF
-ql
-qV
-oJ
-ru
-ru
-sI
-sY
-sY
-tz
-tP
-ru
-uQ
-vq
-vN
-wv
-sX
-sX
-yg
-yJ
-sX
-EZ
-sX
-yg
-yJ
-sX
-FD
-sX
-GG
-Hz
-Im
-IO
-Jt
-Kr
-Le
-LF
-Jt
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abe
+abe
+abe
+abe
+adE
+aei
+aeT
+abe
+aac
+aac
+aac
+aio
+ajm
+akf
+akf
+akf
+amf
+amK
+anp
+anS
+aoo
+aKc
+aph
+apF
+aql
+aqV
+aoJ
+aru
+aru
+asI
+asY
+asY
+atz
+atP
+aru
+auQ
+avq
+avN
+awv
+asX
+asX
+ayg
+ayJ
+asX
+aEZ
+asX
+ayg
+ayJ
+asX
+aFD
+asX
+aGG
+aHz
+aIm
+aIO
+aJt
+aKr
+aLe
+aLF
+aJt
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(108,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bf
-bt
-cg
-cU
-cg
-ej
-dC
-be
-ac
-ac
-ac
-io
-jn
-kg
-kO
-kf
-mg
-io
-nq
-nT
-on
-oL
-oK
-oK
-qm
-qW
-rq
-rN
-sm
-sJ
-sZ
-tj
-sO
-tQ
-um
-uR
-vr
-vO
-ww
-sX
-uk
-yh
-yK
-uk
-sX
-uk
-yh
-yK
-uk
-FD
-sX
-GG
-Hz
-Im
-IP
-Jt
-Ks
-Lf
-LG
-Jt
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abf
+abt
+acg
+acU
+acg
+aej
+adC
+abe
+aac
+aac
+aac
+aio
+ajn
+akg
+akO
+akf
+amg
+aio
+anq
+anT
+aon
+aib
+aoK
+aoK
+aqm
+aqW
+arq
+arN
+asm
+asJ
+asZ
+atj
+asO
+atQ
+aum
+auR
+avr
+avO
+aww
+asX
+auk
+ayh
+ayK
+auk
+asX
+auk
+ayh
+ayK
+auk
+aFD
+asX
+aGG
+aHz
+aIm
+aIP
+aJt
+aKs
+aLf
+aLG
+aJt
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(109,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-bf
-bu
-ch
-be
-dF
-ek
-eV
-fI
-ac
-ac
-ac
-io
-jo
-kf
-kP
-kf
-mh
-io
-nr
-nU
-on
-oM
-oK
-oK
-qn
-qX
-rr
-rO
-sn
-sK
-rO
-tk
-rO
-tR
-ru
-uS
-vr
-vO
-ww
-Aj
-wu
-sk
-yL
-wu
-Fa
-wu
-BF
-uO
-wu
-FE
-sX
-GG
-Hz
-Im
-IQ
-Jt
-Kt
-Lg
-LH
-Jt
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+abf
+abu
+ach
+abe
+adF
+aek
+aeV
+afI
+aac
+aac
+aac
+aio
+ajo
+akf
+akP
+akf
+aht
+aio
+anr
+anU
+aon
+aoM
+aoK
+aoK
+aqn
+aqX
+arr
+arO
+asn
+asK
+arO
+atk
+arO
+atR
+aru
+auS
+avr
+avO
+aww
+aAj
+awu
+ask
+ayL
+awu
+aFa
+awu
+aBF
+auO
+awu
+aFE
+asX
+aGG
+aHz
+aIm
+aJV
+aJt
+asr
+aLg
+aLH
+aJt
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(110,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-aq
-ac
-ac
-ac
-ac
-ac
-ad
-be
-be
-be
-be
-be
-be
-eW
-fJ
-ac
-ac
-ad
-io
-jp
-kf
-kP
-kf
-mi
-io
-io
-nV
-on
-oN
-pi
-pG
-qo
-qY
-oJ
-rP
-so
-sL
-ta
-tl
-sO
-sO
-un
-uR
-vr
-vO
-ww
-sX
-uk
-uk
-uk
-uk
-sX
-uk
-uk
-uk
-uk
-FD
-sX
-GG
-HA
-Im
-IR
-Jt
-Jt
-Jt
-Jt
-Jt
-GK
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+abe
+abe
+abe
+abe
+abe
+abe
+aeW
+afJ
+aac
+aac
+aac
+aio
+ajp
+akf
+akP
+akf
+ami
+aio
+aio
+anV
+aon
+aoN
+api
+apG
+aqo
+aqY
+aoJ
+arP
+aso
+asL
+ata
+atl
+asO
+asO
+aun
+auR
+avr
+avO
+aww
+asX
+auk
+auk
+auk
+auk
+asX
+auk
+auk
+auk
+auk
+aFD
+asX
+aGG
+aHA
+aIm
+arx
+aJt
+aJt
+aJt
+aJt
+aJt
+aGK
+aQf
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(111,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-io
-jq
-kh
-kP
-lt
-mj
-mK
-ns
-nU
-on
-oJ
-oJ
-oJ
-oJ
-oJ
-oJ
-rQ
-so
-sM
-ru
-tm
-sO
-sO
-uo
-uT
-vr
-vO
-ww
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-FD
-sX
-GG
-Hz
-Im
-IS
-rJ
-Ku
-Lh
-LI
-Mg
-GK
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aRm
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aio
+ajq
+akh
+akP
+alt
+amj
+amK
+ans
+anU
+aon
+aoJ
+aoJ
+aoJ
+aoJ
+aoJ
+aoJ
+arQ
+aso
+asM
+aru
+atm
+asO
+asO
+auo
+auT
+avr
+avO
+aww
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+aFD
+asX
+aGG
+aHz
+aIm
+aIS
+arJ
+aKu
+aLh
+aLI
+aMg
+aGK
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(112,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-io
-jr
-ki
-kQ
-lu
-mk
-mL
-nt
-nW
-op
-oO
-pj
-pk
-qp
-qZ
-rs
-rR
-sp
-sN
-tb
-tn
-sO
-sO
-up
-uR
-vr
-vO
-ww
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-FD
-sX
-GH
-HB
-In
-IT
-rJ
-Kv
-Lh
-GK
-GK
-GK
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aio
+ajr
+aki
+akQ
+alu
+amk
+amL
+ant
+anW
+aop
+aoO
+apj
+apk
+aqp
+aqZ
+ars
+arR
+asp
+asN
+atb
+atn
+asO
+asO
+aup
+auR
+avr
+avO
+aww
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+aFD
+asX
+aGH
+aHB
+aIn
+aIT
+arJ
+aKv
+aLh
+aGK
+aGK
+aGK
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(113,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-io
-js
-kj
-kR
-lv
-ml
-mK
-nu
-nX
-op
-oP
-pk
-pk
-qq
-ra
-rt
-rS
-sq
-Eh
-sO
-sO
-sO
-sO
-up
-uR
-vr
-vO
-ww
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-sX
-FF
-rJ
-rJ
-rJ
-rJ
-rJ
-rJ
-Kw
-Lh
-LJ
-Mh
-GK
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aio
+ajs
+akj
+akR
+alv
+aml
+amK
+anu
+anX
+aop
+aoP
+apk
+apk
+aqq
+ara
+art
+arS
+asq
+aEh
+asO
+asO
+asO
+asO
+aup
+auR
+avr
+avO
+aww
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+asX
+and
+arJ
+arJ
+arJ
+arJ
+arJ
+arJ
+aKw
+aLh
+aLJ
+aMh
+aGK
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(114,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-io
-io
-io
-io
-io
-io
-io
-js
-nY
-op
-oQ
-pl
-pH
-pk
-rb
-rs
-rT
-sr
-sP
-tc
-to
-tA
-tS
-up
-uU
-vs
-vO
-ww
-sX
-xx
-uk
-yM
-zx
-Ak
-sX
-sX
-sX
-sX
-FG
-Gk
-GI
-HC
-Io
-IU
-Jv
-Kx
-Lh
-GK
-GK
-GK
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aio
+aio
+aio
+aio
+aio
+aio
+aio
+ajs
+anY
+aop
+aKt
+apl
+apH
+apk
+arb
+ars
+arT
+ajD
+asP
+atc
+ato
+atA
+atS
+aup
+auU
+ako
+avO
+aww
+asX
+axx
+auk
+ayM
+azx
+aIQ
+asX
+asX
+asX
+asX
+aFG
+aGk
+aGI
+aHC
+aIo
+aIU
+aJv
+aKx
+aLh
+aGK
+aGK
+aGK
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(115,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-kk
-ac
-ac
-ac
-io
-io
-io
-op
-oR
-oR
-oR
-oR
-oR
-ru
-ru
-ru
-sQ
-sQ
-sQ
-sQ
-sQ
-ru
-rJ
-rJ
-vP
-vP
-vP
-vP
-vP
-rJ
-rJ
-rJ
-AQ
-uk
-sX
-uk
-FH
-rJ
-GJ
-HD
-HD
-IV
-Jw
-Ky
-Lh
-LK
-Mh
-GK
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aio
+aio
+aio
+aop
+aoR
+aoR
+aoR
+aoR
+aoR
+aru
+aru
+aru
+asQ
+asQ
+asQ
+asQ
+asQ
+aru
+arJ
+arJ
+avP
+avP
+avP
+avP
+avP
+arJ
+arJ
+arJ
+aAQ
+auk
+asX
+auk
+aFH
+arJ
+aGJ
+aHD
+aHD
+aIV
+aJw
+aKy
+aLh
+aLK
+aMh
+aGK
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(116,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-kk
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-Fb
-wu
-wu
-xx
-wu
-FI
-rJ
-GK
-GK
-GK
-GK
-GK
-GK
-GK
-GK
-GK
-GK
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aFb
+awu
+awu
+axx
+awu
+aFI
+arJ
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(117,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aq
-aq
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-rJ
-vP
-vP
-vP
-vP
-vP
-rJ
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aaq
+aaq
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+arJ
+avP
+avP
+avP
+avP
+avP
+arJ
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(118,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-ac
-ac
-ac
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aac
+aac
+aac
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(119,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aab
+aab
+aab
+aab
+aab
+aab
+aac
+aac
+aac
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(120,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(121,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(122,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(123,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(124,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(125,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(126,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(127,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(128,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(129,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(130,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(131,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(132,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(133,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(134,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(135,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(136,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(137,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(138,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(139,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
+aaa
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aaa
"}
(140,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
"}
diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm
index fcacc81c72..958a9daec2 100644
--- a/maps/tether/tether-04-transit.dmm
+++ b/maps/tether/tether-04-transit.dmm
@@ -347,8 +347,10 @@
/turf/simulated/floor/plating,
/area/maintenance/tether_midpoint)
"J" = (
+/obj/structure/table/woodentable,
+/obj/machinery/camera/network/civilian,
/turf/simulated/floor/wood,
-/area/space)
+/area/tether/midpoint)
"K" = (
/obj/structure/cable{
d1 = 1;
@@ -374,6 +376,13 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/tether/midpoint)
+"N" = (
+/obj/structure/table/woodentable,
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether/midpoint)
"O" = (
/obj/structure/cable{
d1 = 1;
@@ -10768,7 +10777,7 @@ u
g
U
q
-J
+q
T
n
n
@@ -10908,7 +10917,7 @@ u
u
u
g
-n
+J
q
q
F
@@ -10917,7 +10926,7 @@ F
F
q
q
-n
+N
g
u
u
diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm
index 4aa5348f84..7de94d9fd2 100644
--- a/maps/tether/tether-05-station1.dmm
+++ b/maps/tether/tether-05-station1.dmm
@@ -1,2054 +1,2154 @@
-"aaa" = (/turf/space,/area/space)
-"aab" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
-"aac" = (/turf/simulated/mineral/vacuum,/area/mine/explored/upper_level)
-"aad" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/pickengine,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aae" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
-"aaf" = (/turf/space,/area/shuttle/excursion/tether_nearby)
-"aag" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/space)
-"aah" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aai" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aaj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aak" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aal" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aam" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aan" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room)
-"aao" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aap" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aaq" = (/turf/simulated/wall/r_wall,/area/tether/station/burial)
-"aar" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aas" = (/obj/machinery/power/smes/buildable{charge = 2e+006; input_attempt = 1; input_level = 100000; output_level = 200000; RCon_tag = "Engine - Core"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes)
-"aat" = (/turf/simulated/mineral/floor/vacuum,/area/mine/explored/upper_level)
-"aau" = (/turf/simulated/wall,/area/tether/station/burial)
-"aav" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aax" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aay" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaz" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/engineering/engine_smes)
-"aaA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes)
-"aaB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aaC" = (/obj/machinery/power/grid_checker,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes)
-"aaD" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aaF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aaG" = (/obj/machinery/power/smes/buildable{charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; output_level = 1e+006; RCon_tag = "Power - Main"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes)
-"aaH" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/tether/station/burial)
-"aaI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock{name = "Burial Services"; req_access = list(27)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/turf/simulated/floor,/area/engineering/engine_smes)
-"aaM" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaN" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aaO" = (/obj/effect/landmark/engine_loader_pickable{clean_turfs = list(list(20,93,30,118),list(31,94,35,96),list(29,97,43,118),list(44,113,46,118))},/turf/space,/area/space)
-"aaP" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaQ" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"aaR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_x = -25; pixel_y = 0; req_access = list(10); specialfunctions = 4},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aaS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aaT" = (/turf/simulated/wall,/area/hallway/station/atrium)
-"aaU" = (/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring)
-"aaV" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/engi_wash)
-"aaW" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aaX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aaY" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aaZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"aba" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/paper{info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abd" = (/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abe" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_smes)
-"abg" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abh" = (/obj/machinery/button/remote/driver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 32; pixel_y = 2},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abj" = (/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"abk" = (/turf/simulated/floor/reinforced,/area/engineering/engine_room)
-"abl" = (/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abm" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abp" = (/obj/machinery/mass_driver{icon_state = "mass_driver"; dir = 4; id = "chapelgun"},/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abq" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_interior"; locked = 0; name = "Engine Airlock Interior"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"abr" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abs" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_exterior"; locked = 0; name = "Engine Airlock Exterior"; req_access = list(11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock)
-"abt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abv" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/table/reinforced,/obj/item/device/pipe_painter,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"abw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abx" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aby" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"abz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/tether/station/burial)
-"abA" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abB" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"abC" = (/turf/simulated/wall,/area/maintenance/station/eng_lower)
-"abD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abE" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest2"; name = "Engine Room Blast Doors"; pixel_x = 25; pixel_y = 0; req_access = null; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"abF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abJ" = (/obj/machinery/door/blast/regular{dir = 8; id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/simulated/floor,/area/tether/station/burial)
-"abK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abL" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"abN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/camera/network/engineering{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"abO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"abP" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abQ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abR" = (/obj/structure/table/steel,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abT" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"abU" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/obj/structure/cable/green,/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
-"abV" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"abW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
-"abX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"abY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"abZ" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/backup)
-"aca" = (/obj/structure/table/steel,/obj/item/weapon/deck/cards,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"acb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"acc" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"acd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
-"ace" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"acf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acg" = (/turf/simulated/wall/r_wall,/area/engineering/engine_gas)
-"ach" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aci" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/random/soap,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"acj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"ack" = (/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"acl" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/gear_painter,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acm" = (/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aco" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium)
-"acp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"acr" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acs" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium)
-"act" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"acv" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"acw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"acy" = (/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"acz" = (/turf/simulated/wall/r_wall,/area/engineering/hallway)
-"acA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/contraband,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"acB" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"acC" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"acD" = (/obj/item/weapon/reagent_containers/food/snacks/donut/cherryjelly,/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"acE" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"acF" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"acG" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"acH" = (/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"acI" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"acJ" = (/turf/simulated/floor,/area/engineering/engine_room)
-"acK" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"acL" = (/turf/simulated/wall/r_wall,/area/engineering/engine_smes)
-"acM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/broken{icon_state = "pipe-b"; dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"acO" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Engineering"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"acR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"acS" = (/turf/simulated/wall/r_wall,/area/engineering/workshop)
-"acT" = (/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"acU" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"acW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"acX" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 9},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"acY" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"acZ" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"ada" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"adb" = (/obj/machinery/door/blast/shutters{dir = 2; id = "surfcargooffice"; layer = 3.3; name = "Cargo Office Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway)
-"adc" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"add" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"ade" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"adf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring)
-"adg" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"adh" = (/obj/structure/girder,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"adi" = (/obj/structure/table/steel,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"adk" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"adl" = (/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"adm" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"adn" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/machinery/floor_light/prebuilt{on = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ado" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"adp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"adq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"ads" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"adt" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"adu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"adv" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"adw" = (/obj/structure/curtain/open/bed,/obj/structure/bed/padded,/obj/item/weapon/bedsheet/blue,/obj/random/plushie,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"adx" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ady" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"adz" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"adC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"adD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"adE" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"adF" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"adG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"adH" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"adI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"adK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"adL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"adM" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"adO" = (/turf/simulated/wall/r_wall,/area/gateway/prep_room)
-"adP" = (/turf/simulated/wall/r_wall,/area/gateway)
-"adQ" = (/obj/machinery/computer/power_monitor{dir = 4; throwpass = 1},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"adR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/atrium)
-"adS" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"adT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"adU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"adV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"adW" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"adX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"adY" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"adZ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"aea" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aeb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
-"aec" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aee" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aef" = (/obj/random/junk,/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aeg" = (/obj/random/trash,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aeh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aei" = (/turf/simulated/wall/r_wall,/area/mine/explored/upper_level)
-"aek" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
-"ael" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/effect/decal/cleanable/dirt,/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/hallway/station/docks)
-"aen" = (/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aeq" = (/obj/machinery/computer/cryopod{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"aer" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/tether{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aes" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/station_map{pixel_y = 32},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aet" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/security/engineering{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aew" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring)
-"aex" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aey" = (/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"aez" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/engine_monitoring)
-"aeA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engine Monitoring Room"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring)
-"aeB" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway)
-"aeC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aeD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aeE" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aeF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
-"aeG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aeI" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
-"aeL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/tool,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aeM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aeO" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator)
-"aeP" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aeQ" = (/obj/machinery/computer/rcon{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aeR" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
-"aeS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aeU" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aeV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aeW" = (/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"aeX" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"afe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aff" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"afg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afi" = (/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"afj" = (/obj/machinery/light,/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"afk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"afm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"afn" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"afp" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage)
-"afq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"afr" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"afs" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"aft" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"afu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"afv" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/bridge)
-"afw" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/bridge)
-"afx" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/bridge)
-"afy" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/elevator)
-"afz" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"afC" = (/turf/simulated/wall/r_wall,/area/hallway/station/atrium)
-"afD" = (/obj/machinery/camera/network/tether{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afE" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afF" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afG" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"afJ" = (/obj/machinery/vending/snack,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afK" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"afL" = (/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"afM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"afN" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_monitoring)
-"afQ" = (/obj/machinery/light{dir = 1},/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"afS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring)
-"afU" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"afV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"afX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"afY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"afZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aga" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"agb" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/hallway/station/atrium)
-"agc" = (/obj/structure/grille,/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief)
-"agd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"age" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"agg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agh" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agi" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/obj/structure/window/reinforced/polarized{dir = 8; id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief)
-"agj" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop)
-"agk" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop)
-"agl" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop)
-"agm" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop)
-"agn" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop)
-"ago" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agu" = (/obj/structure/sign/deck1,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator)
-"agv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agz" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"agF" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/obj/machinery/light/small{dir = 1},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_al_c_snsr"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"agI" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"agJ" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room)
-"agL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"agN" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"agO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"agP" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"agQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agR" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agT" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agU" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agW" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"agZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aha" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahb" = (/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahc" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/camera/network/tether,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"ahf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aho" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/substation/engineering)
-"ahq" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"ahs" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"ahv" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ahw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahx" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway)
-"ahy" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"ahz" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/tiled/dark,/area/gateway)
-"ahA" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/dark,/area/gateway)
-"ahB" = (/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"ahD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock)
-"ahF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ahK" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"ahM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"ahO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"ahR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"ahS" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/dark,/area/gateway)
-"ahT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"ahV" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
-"ahW" = (/obj/structure/lattice,/turf/space,/area/space)
-"ahX" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway)
-"ahY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/structure/symbol/lo{pixel_x = -32},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"ahZ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aib" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aid" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aii" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway)
-"aij" = (/turf/simulated/wall/r_wall,/area/engineering/break_room)
-"aik" = (/turf/simulated/wall/r_wall,/area/maintenance/station/eng_lower)
-"aim" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aio" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aip" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aiq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"air" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ais" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aiy" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; pixel_x = -24; tag_airpump = "engine_airlock_pump"; tag_chamber_sensor = "eng_al_c_snsr"; tag_exterior_door = "engine_airlock_exterior"; tag_exterior_sensor = "eng_al_ext_snsr"; tag_interior_door = "engine_airlock_interior"; tag_interior_sensor = "eng_al_int_snsr"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"aiz" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green,/turf/simulated/floor,/area/gateway)
-"aiC" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"aiD" = (/obj/machinery/airlock_sensor/airlock_exterior{id_tag = "eng_al_ext_snsr"; layer = 3.3; master_tag = "engine_room_airlock"; pixel_x = -22; pixel_y = 0; req_access = list(10)},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"aiF" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"aiG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aiJ" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway)
-"aiK" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway)
-"aiL" = (/obj/machinery/door/blast/shutters{dir = 2; id = "GateShut"; layer = 3.3; name = "Gateway Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway)
-"aiM" = (/turf/simulated/wall/r_wall,/area/engineering/engine_airlock)
-"aiN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"aiO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aiP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aiQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aiR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aiS" = (/turf/simulated/floor/tiled/dark,/area/gateway)
-"aiT" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/storage)
-"aiU" = (/obj/machinery/button/remote/blast_door{id = "GateShut"; name = "Gateway Shutter"; pixel_y = 24; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway)
-"aiV" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"aiW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aiX" = (/obj/structure/closet,/obj/random/junk,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aiY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/gateway)
-"aiZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"aja" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway)
-"ajb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/gateway)
-"ajc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/command{name = "Gateway Electrical Shaft"; req_access = list(62); req_one_access = list()},/turf/simulated/floor,/area/gateway)
-"ajd" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"aje" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajf" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/dark,/area/gateway)
-"ajg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ajh" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"aji" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajj" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ajl" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajm" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajo" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ajp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room)
-"ajq" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ajs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/tether,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ajt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock)
-"aju" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ajv" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajw" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajx" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"ajz" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajA" = (/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"ajC" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"ajD" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage)
-"ajE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajF" = (/turf/simulated/floor/carpet,/area/engineering/break_room)
-"ajG" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"ajH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/storage)
-"ajJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ajL" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajM" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajN" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajO" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajR" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajS" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajT" = (/turf/simulated/floor/bluegrid,/area/gateway/prep_room)
-"ajU" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/gateway/prep_room)
-"ajV" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajW" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"ajX" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajY" = (/obj/machinery/suit_cycler/engineering{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ajZ" = (/obj/machinery/suit_cycler/medical{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"aka" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"akb" = (/obj/machinery/suit_cycler/mining{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"akc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/shutters{dir = 2; id = "surfcargooffice"; layer = 3.3; name = "Cargo Office Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway)
-"akd" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ake" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"akf" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_y = 22; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway)
-"akg" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"akh" = (/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway)
-"aki" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akj" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"akk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/storage)
-"akl" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"akm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor,/area/engineering/storage)
-"akn" = (/obj/effect/floor_decal/rust,/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"ako" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"akp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/engineering/storage)
-"akq" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"akr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"aks" = (/turf/simulated/floor,/area/engineering/engine_gas)
-"akt" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"aku" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{dir = 8},/turf/simulated/open,/area/maintenance/station/eng_lower)
-"akw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway)
-"akx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway)
-"aky" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway)
-"akz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway)
-"akA" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akB" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akC" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akE" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway)
-"akF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/gateway)
-"akG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/gateway)
-"akH" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway)
-"akI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akJ" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"akK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akL" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway)
-"akM" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"akN" = (/obj/machinery/door/airlock/multi_tile/metal{name = "Gateway Prep Room"},/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"akP" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"akR" = (/obj/machinery/camera/network/engineering{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage)
-"akS" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage)
-"akT" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"akU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = 24; pixel_y = -23; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"akV" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = -24; pixel_y = 24; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"akW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"akX" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"akY" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"akZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"ala" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"alb" = (/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"alc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
-"ald" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ale" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway)
-"alf" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"alg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Exploration Public Access"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"alh" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/camera/network/exploration{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"ali" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"alj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"alk" = (/obj/machinery/floodlight,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"all" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_x = 25; pixel_y = 25; req_access = list(62)},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"alo" = (/obj/machinery/camera/network/exploration,/turf/simulated/floor/bluegrid,/area/gateway/prep_room)
-"alp" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/exploration{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"alq" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
-"alr" = (/obj/machinery/computer/station_alert{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"als" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/recharger,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"alt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_monitoring)
-"alu" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/camera/network/exploration{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway)
-"alv" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring)
-"alw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup)
-"alx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/atmos/backup)
-"aly" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"alz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup)
-"alA" = (/turf/simulated/wall,/area/holodeck_control)
-"alB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage)
-"alC" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"alD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage)
-"alE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"alF" = (/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
-"alG" = (/turf/simulated/floor,/area/engineering/shaft)
-"alH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"alI" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"alJ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
-"alK" = (/obj/structure/ladder/up,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/shaft)
-"alL" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"alM" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"alO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/landmark/start,/turf/simulated/floor/tiled,/area/storage/tools)
-"alP" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools)
-"alQ" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian)
-"alR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
-"alS" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools)
-"alT" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency4)
-"alU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"alV" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"alW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/steeldecal/steel_decals_central6{icon_state = "steel_decals_central6"; dir = 8},/obj/machinery/alarm{pixel_y = 22},/obj/vehicle/train/engine,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
-"alX" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"alY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"alZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"ama" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "cafe2"; name = "Cafe Shutters"; pixel_x = -10; pixel_y = 36; req_access = list(); req_one_access = list(25)},/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"amc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"amd" = (/obj/machinery/light{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"ame" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/device/gps/command,/obj/item/device/gps/command,/obj/item/device/gps/command,/turf/simulated/floor/tiled/dark,/area/teleporter)
-"amf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"amg" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck)
-"amh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/supply{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"ami" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"amk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aml" = (/obj/machinery/light,/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"amm" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"amo" = (/obj/machinery/door/window/northright{name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"amq" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"amr" = (/obj/structure/railing{dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"ams" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/engineering,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"amt" = (/obj/machinery/door/window{dir = 1; icon_state = "left"; name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amu" = (/obj/structure/railing{dir = 1},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"amv" = (/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"amw" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"amx" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"amy" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/device/flashlight/lamp/green,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amz" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tool,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"amA" = (/obj/structure/disposalpipe/up{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"amB" = (/obj/machinery/atmospherics/valve/digital/open,/obj/structure/railing{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"amC" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amD" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amE" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
-"amF" = (/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amG" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_coffee/full,/turf/simulated/floor/wood,/area/hallway/station/atrium)
-"amH" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
-"amI" = (/obj/structure/flora/ausbushes/brflowers,/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"amJ" = (/obj/machinery/light/flamp/noshade,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"amK" = (/turf/space,/area/shuttle/specialops/tether)
-"amL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"amM" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control)
-"amN" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/holodeck_control)
-"amO" = (/obj/structure/dispenser,/turf/simulated/floor,/area/engineering/storage)
-"amP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"amQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"amR" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"amS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"amT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"amU" = (/turf/simulated/wall,/area/maintenance/abandonedlibrary)
-"amV" = (/obj/structure/sign/department/biblio,/turf/simulated/wall,/area/hallway/station/atrium)
-"amW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/hallway/station/atrium)
-"amX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/hallway/station/atrium)
-"amY" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"amZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"ana" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/engineering_guide,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anb" = (/obj/machinery/light{dir = 1},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/book/manual/engineering_hacking,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anc" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/shaft)
-"and" = (/obj/machinery/computer/atmoscontrol{dir = 4},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"ane" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/shaft)
-"anf" = (/obj/machinery/camera/network/civilian{dir = 2},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"ang" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"anh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"ani" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anj" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"ank" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anl" = (/obj/structure/sign/department/engine,/turf/simulated/wall/r_wall,/area/engineering/hallway)
-"anm" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"ann" = (/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"ano" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anp" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"ans" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"ant" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
-"anw" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anx" = (/obj/random/junk,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
-"any" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anA" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anD" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"anE" = (/obj/structure/symbol/lo{pixel_y = 32},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"anF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor,/area/engineering/hallway)
-"anG" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anH" = (/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room)
-"anI" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"anL" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anM" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/hydroponics_pod_people,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anN" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 12},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anP" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
-"anQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"anR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"anS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anT" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/book/codex/lore/news,/obj/random/contraband,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"anU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"anV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anW" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anX" = (/obj/structure/bookcase,/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"anY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"anZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aoa" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"aob" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoc" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/rust_engine,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"aod" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"aoe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
-"aof" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aog" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
-"aoh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engineering/atmos/backup)
-"aoi" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
-"aoj" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aok" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aol" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aon" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aoo" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aop" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aoq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aor" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aos" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"aot" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Electrical Shaft"; req_one_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/hallway)
-"aou" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aov" = (/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"aow" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
-"aox" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/hallway)
-"aoz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
-"aoA" = (/obj/structure/table/woodentable,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/obj/random/medical,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoB" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aoC" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoD" = (/obj/machinery/newscaster{pixel_x = 30},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoE" = (/obj/random/junk,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoF" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/engineering/break_room)
-"aoG" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aoH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aoI" = (/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aoJ" = (/turf/simulated/wall/r_wall,/area/engineering/foyer)
-"aoK" = (/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoL" = (/obj/random/trash,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"aoM" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoN" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoO" = (/turf/simulated/wall/r_wall,/area/storage/emergency_storage/emergency4)
-"aoP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"aoR" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized/full{id = "library_study"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoS" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoT" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/book/codex,/obj/random/maintenance,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"aoU" = (/obj/structure/table,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
-"aoV" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monofloor{dir = 1},/area/holodeck_control)
-"aoW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoX" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aoY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"aoZ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apc" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"ape" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/break_room)
-"aph" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"api" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"apj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apm" = (/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"apn" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"app" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/meter,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"apq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"apr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aps" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Substation"; req_access = list(24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup)
-"apt" = (/obj/item/stack/tile/wood{amount = 10},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"apv" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apx" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apC" = (/obj/machinery/button/windowtint{id = "library_study"; pixel_x = 26; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apD" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/table/woodentable,/obj/random/junk,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"apF" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"apG" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apH" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"apI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apK" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apL" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apM" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"apN" = (/obj/machinery/computer/security/engineering,/turf/simulated/floor/wood,/area/engineering/break_room)
-"apO" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/wood,/area/engineering/break_room)
-"apP" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/wood,/area/engineering/break_room)
-"apQ" = (/turf/simulated/floor/wood,/area/engineering/break_room)
-"apR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
-"apS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
-"apT" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/engineering/break_room)
-"apU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"apV" = (/obj/structure/table/woodentable,/obj/random/maintenance,/obj/random/mouseremains,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"apW" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"apX" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"apY" = (/obj/machinery/light_construct/small,/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"apZ" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibrary)
-"aqa" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"aqc" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/obj/machinery/light/small,/obj/random/drinkbottle,/obj/random/coin,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
-"aqd" = (/turf/simulated/wall,/area/maintenance/abandonedlibraryconference)
-"aqe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos/backup)
-"aqf" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/computer/timeclock/premade/south,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aqh" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/backup)
-"aqj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqk" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aql" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqm" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqn" = (/obj/machinery/door/firedoor/glass,/obj/random/obstruction,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"aqo" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"aqq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqr" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"aqs" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aqt" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aqu" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqv" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/engineering/break_room)
-"aqw" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibraryconference)
-"aqx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/tether{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aqy" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"aqz" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"aqA" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
-"aqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"aqD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqE" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqG" = (/obj/structure/bed/chair/comfy/beige,/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aqH" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aqI" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqJ" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqK" = (/obj/machinery/pipedispenser,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqL" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aqM" = (/turf/simulated/wall,/area/engineering/workshop)
-"aqN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/workshop)
-"aqO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqP" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"aqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqS" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aqU" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"aqV" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"aqW" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"aqX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"aqY" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"aqZ" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"ara" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
-"arb" = (/obj/machinery/atmospherics/valve/digital/open,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"arc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"ard" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/watertank,/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"are" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"arf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"arg" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arh" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light{dir = 4},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled,/area/holodeck_control)
-"ari" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arj" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
-"ark" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"arl" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"arm" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aro" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/stack/material/wood{amount = 10},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"arp" = (/obj/structure/table/woodentable,/obj/item/weapon/packageWrap,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/contraband,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"arq" = (/turf/simulated/wall/r_wall,/area/engineering/shaft)
-"arr" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"ars" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"art" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/tool,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aru" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"arv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
-"arw" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"arx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"ary" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"arz" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"arA" = (/obj/machinery/atmospherics/valve/open,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"arB" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"arC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/down{dir = 8},/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/eng_lower)
-"arD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"arF" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop)
-"arG" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/maintenance,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"arH" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"arI" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/engineering/break_room)
-"arJ" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"arL" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arM" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/engineering)
-"arN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/carpet,/area/engineering/break_room)
-"arO" = (/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"arP" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"arQ" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"arR" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"arS" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
-"arT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"arU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/item/weapon/flame/lighter/zippo,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arV" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
-"arW" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"arX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"arY" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
-"arZ" = (/obj/structure/disposalpipe/segment,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"asa" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"asb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/engineering/break_room)
-"asc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/railing{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"asd" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"ase" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
-"asf" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"asg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room)
-"ash" = (/turf/simulated/wall/r_wall,/area/holodeck_control)
-"asi" = (/obj/machinery/door/airlock/glass{name = "Holodeck Control"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/holodeck_control)
-"asj" = (/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"ask" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/table/woodentable,/obj/item/weapon/book/manual/supermatter_engine{pixel_x = -3},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"asl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"asm" = (/obj/machinery/mech_recharger,/turf/simulated/floor,/area/engineering/workshop)
-"asn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aso" = (/obj/machinery/camera/network/civilian{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
-"asp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"asq" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"asr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room)
-"ass" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"ast" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
-"asu" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
-"asv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/railing,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower)
-"asw" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"asx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/engineering/break_room)
-"asy" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"asz" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"asA" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/device/closet_painter,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"asD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"asI" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/cryo)
-"asJ" = (/obj/structure/cryofeed{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"asK" = (/obj/machinery/cryopod{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"asL" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"asN" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"asO" = (/obj/structure/cryofeed,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"asP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/holodeck_control)
-"asQ" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor/tiled,/area/holodeck_control)
-"asS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"asU" = (/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"atb" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/engineering)
-"atd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/engineering/break_room)
-"atf" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"atg" = (/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"ath" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"atj" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"atk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"ato" = (/obj/structure/railing{dir = 8},/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"atp" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"atq" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"ats" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"att" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"atu" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"atx" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"aty" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"atA" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"atB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"atF" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"atG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room)
-"atH" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/engineering/foyer)
-"atI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"atJ" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"atK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"atN" = (/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"atO" = (/turf/simulated/wall/r_wall,/area/engineering/engine_eva)
-"atQ" = (/obj/structure/window/reinforced,/obj/structure/frame,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"atS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"atT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"atW" = (/turf/simulated/floor/tiled,/area/engineering/hallway)
-"atX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"atY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"atZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/bookcase/manuals/engineering,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/evaguide,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aua" = (/obj/machinery/camera/network/engineering{dir = 1},/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"auc" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aue" = (/turf/simulated/wall,/area/engineering/atmos/backup)
-"auh" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"auk" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aul" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"aum" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"auo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"aur" = (/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"aus" = (/turf/simulated/wall,/area/crew_quarters/sleep/cryo)
-"auv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"auw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"auy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"auz" = (/turf/simulated/wall,/area/engineering/break_room)
-"auA" = (/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"auB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"auW" = (/obj/machinery/atmospherics/omni/mixer{tag_east = 1; tag_east_con = 0.21; tag_south = 1; tag_south_con = 0.79; tag_west = 2},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"auX" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/machinery/camera/network/engineering{dir = 8},/obj/machinery/meter,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"auY" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 1; tag_south = 4; tag_west = 3},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"auZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 1},/obj/effect/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"ava" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 4},/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"avc" = (/obj/machinery/cryopod/robot,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"avd" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"avf" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space)
-"avg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"avh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"avj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"avm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"avo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"avq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"avs" = (/obj/structure/table/reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"avw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"avx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"avz" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{name = "Engineering Break Room"; sortType = "Engineering Break Room"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"avB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/engineering/break_room)
-"avD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room)
-"avF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"avI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"avL" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"avP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"avS" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset/full/double,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
-"avZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"awa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"awb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/civilian{dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"awk" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"awl" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"awm" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"awn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"awp" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Stairwell"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"aws" = (/turf/simulated/wall,/area/tether/station/stairs_one)
-"awt" = (/turf/simulated/wall,/area/storage/tools)
-"awu" = (/turf/simulated/wall,/area/hallway/station/docks)
-"awy" = (/turf/simulated/wall/r_wall,/area/bridge)
-"awz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/bridge)
-"awA" = (/obj/structure/sign/department/bridge,/turf/simulated/wall/r_wall,/area/bridge_hallway)
-"awB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop)
-"awC" = (/obj/structure/sign/nanotrasen,/turf/simulated/wall/r_wall,/area/bridge_hallway)
-"awD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"awE" = (/turf/simulated/wall/r_wall,/area/bridge_hallway)
-"awF" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/obj/machinery/camera/network/tether{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"awG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/hop)
-"awH" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"awI" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/hop)
-"awJ" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(12)},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/bridge)
-"awK" = (/turf/simulated/wall,/area/maintenance/station/bridge)
-"awM" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
-"awO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"awP" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"awR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/engineering/break_room)
-"awT" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/glasses/square,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"awU" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled,/area/storage/tools)
-"awZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"axb" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/hallway/station/docks)
-"axc" = (/turf/simulated/mineral/floor/vacuum,/area/bridge)
-"axd" = (/turf/space/cracked_asteroid,/area/bridge)
-"axe" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"axf" = (/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"axg" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"axj" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"axk" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge)
-"axl" = (/obj/random/trash_pile,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge)
-"axt" = (/obj/random/trash_pile,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"axu" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"axv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"axw" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"axx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"axz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/storage/tools)
-"axA" = (/obj/machinery/atmospherics/pipe/tank/oxygen{icon_state = "o2_map"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"axB" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"axC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"axD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/hallway/station/docks)
-"axE" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/hallway/station/docks)
-"axF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"axG" = (/obj/machinery/atmospherics/pipe/tank{dir = 1; icon_state = "air_map"; name = "Waste Tank"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"axH" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{icon_state = "n2_map"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"axM" = (/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/station/bridge)
-"axO" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"axP" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"axQ" = (/obj/structure/sign/deck1,/turf/simulated/wall,/area/tether/station/stairs_one)
-"axR" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"axU" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"axW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"axY" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"axZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/hallway/station/docks)
-"ayb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aye" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"ayf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"ayi" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/machinery/light_switch{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"ayj" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"ayl" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"aym" = (/obj/machinery/account_database,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"ayn" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/bridge)
-"ayp" = (/turf/space,/area/shuttle/excursion/tether_dockarm)
-"ays" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"ayw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"ayx" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"ayy" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"ayB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools)
-"ayC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks)
-"ayD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"ayK" = (/obj/machinery/computer/rcon,/turf/simulated/floor/tiled/dark,/area/bridge)
-"ayN" = (/obj/machinery/computer/communications,/turf/simulated/floor/tiled/dark,/area/bridge)
-"ayQ" = (/obj/machinery/computer/med_data,/turf/simulated/floor/tiled/dark,/area/bridge)
-"ayS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"ayT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"ayU" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"ayW" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"ayX" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"ayZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/bridge)
-"aza" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge)
-"aze" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"azf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"azh" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/newscaster{pixel_x = -30},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
-"azi" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled,/area/storage/tools)
-"azj" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"azk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Washroom"; req_one_access = list(10)},/turf/simulated/floor/tiled/white,/area/engineering/break_room)
-"azl" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/hallway/station/docks)
-"azm" = (/obj/machinery/computer/power_monitor{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge)
-"azn" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge)
-"azo" = (/obj/machinery/computer/station_alert{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge)
-"azp" = (/obj/machinery/computer/security{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge)
-"azq" = (/obj/machinery/computer/supplycomp{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge)
-"azr" = (/obj/machinery/computer/crew{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge)
-"azy" = (/mob/living/simple_mob/animal/passive/dog/corgi/Ian,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"azz" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"azA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"azB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"azD" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"azI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium)
-"azJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"azM" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"azN" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"azO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
-"azQ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 5},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"azR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"azU" = (/turf/simulated/floor/tiled/dark,/area/bridge)
-"azV" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/bridge)
-"azW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/bridge)
-"azX" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"azY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"azZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aAd" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/hop,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"aAf" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Personnel's Office"},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"aAk" = (/turf/simulated/wall,/area/crew_quarters/toilet)
-"aAm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aAo" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aAq" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/hallway/station/docks)
-"aAG" = (/obj/structure/bed/chair{dir = 1},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"aAH" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aAL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aAO" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"aAP" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"aAQ" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "exterior access button"; pixel_x = 0; pixel_y = -25; req_one_access = list(11,24)},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/airless,/area/space)
-"aAR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aAS" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southleft{name = "Jetpack Storage"; req_access = newlist(); req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aAT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aAV" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aAW" = (/turf/simulated/wall,/area/crew_quarters/sleep/engi_wash)
-"aAX" = (/obj/structure/bed/chair,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aAZ" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aBa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aBb" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aBd" = (/obj/structure/bed/chair,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aBf" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aBg" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aBh" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aBi" = (/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aBj" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge)
-"aBk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge)
-"aBl" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aBm" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/obj/machinery/camera/network/engineering,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aBp" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aBq" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aBr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light_switch{pixel_y = -26},/obj/machinery/keycard_auth{pixel_x = -28},/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"aBt" = (/obj/structure/closet/secure_closet/hop2,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"aBu" = (/obj/structure/closet/secure_closet/hop,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"aBw" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aBy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"aBA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aBB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aBC" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aBD" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aBE" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aBH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian)
-"aBJ" = (/obj/machinery/computer/secure_data{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge)
-"aBK" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge)
-"aBL" = (/obj/structure/table/reinforced,/obj/item/weapon/book/codex,/turf/simulated/floor/tiled/dark,/area/bridge)
-"aBM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge)
-"aBO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aBR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aBU" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"aBV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"aBX" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aCc" = (/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"aCe" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aCn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCp" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCq" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCt" = (/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCu" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCw" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aCx" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aCy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control)
-"aCB" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_outer"; locked = 1; name = "Engineering Starboard External Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor,/area/engineering/engineering_airlock)
-"aCC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"aCD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"aCE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aCF" = (/turf/simulated/wall,/area/tether/station/dock_one)
-"aCG" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one)
-"aCI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one)
-"aCJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/station/docks)
-"aCK" = (/turf/simulated/wall,/area/tether/station/dock_two)
-"aCL" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two)
-"aCM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"aCN" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two)
-"aCO" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain)
-"aCP" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aCQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aCR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aCS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway Central"; dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
-"aCU" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aCW" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCY" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aCZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aDh" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"aDj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aDn" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aDp" = (/obj/machinery/shower{pixel_y = 8},/obj/item/weapon/soap/deluxe,/obj/structure/curtain/open/shower,/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain)
-"aDq" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain)
-"aDr" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain)
-"aDs" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aDu" = (/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aDy" = (/obj/structure/sign/department/conference_room,/turf/simulated/wall/r_wall,/area/bridge_hallway)
-"aDz" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/command)
-"aDA" = (/turf/simulated/wall/r_wall,/area/maintenance/station/bridge)
-"aDD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aDE" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aDF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aDG" = (/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aDH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"aDJ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aDK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aDL" = (/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aDM" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Subgrid"; name_tag = "Civilian Subgrid"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aDN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain)
-"aDO" = (/obj/structure/toilet{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/captain)
-"aDP" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/random/junk,/obj/random/tool,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
-"aDQ" = (/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aDR" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aDV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/camera/network/tether{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aDZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aEa" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1379; id_tag = "eng_starboard_pump"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aEb" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aEf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aEl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aEm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aEr" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue_captain,/obj/item/clothing/glasses/omnihud/all,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/weapon/stamp/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aEs" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aEt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/fox/renault,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aEu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aEx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aEz" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
-"aEA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aEB" = (/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/command)
-"aEE" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aEF" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/bridge)
-"aEG" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge)
-"aEM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aEN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aEO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aEP" = (/obj/structure/closet/wardrobe/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aEQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aER" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash)
-"aET" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash)
-"aEV" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aEW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aEX" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Civilian"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aEZ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
-"aFb" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Command Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/command)
-"aFc" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
-"aFe" = (/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
-"aFf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
-"aFh" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aFq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aFr" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aFt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aFw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aFx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aFz" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/tether{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aFB" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aFI" = (/obj/structure/table/standard,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/holodeck_control)
-"aFJ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "eng_starboard_pump"},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_starboard_sensor"; pixel_x = 24; pixel_y = 10},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1379; id_tag = "eng_starboard_airlock"; pixel_x = 24; pixel_y = 0; req_access = newlist(); req_one_access = list(11,24); tag_airpump = "eng_starboard_pump"; tag_chamber_sensor = "eng_starboard_sensor"; tag_exterior_door = "eng_starboard_outer"; tag_interior_door = "eng_starboard_inner"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aFK" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aFL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aFO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aFT" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"aFU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"aFV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aFW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aFX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aFY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"aFZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"aGa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aGb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aGc" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aGi" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"aGl" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"aGs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aGx" = (/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aGy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aGz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aGB" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_airlock)
-"aGF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aGI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aGJ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway South"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"aGK" = (/turf/simulated/wall/r_wall,/area/teleporter)
-"aGP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/civilian)
-"aGZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"aHa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aHb" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aHc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"aHd" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aHf" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/teleporter)
-"aHi" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/teleporter)
-"aHk" = (/obj/structure/table/standard,/obj/item/weapon/hand_tele,/turf/simulated/floor/tiled/dark,/area/teleporter)
-"aHs" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aHt" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aHv" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aHw" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aHx" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aHz" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aHB" = (/obj/machinery/camera/network/command{c_tag = "COM - Teleport Access"},/turf/simulated/floor/tiled,/area/teleporter)
-"aHE" = (/obj/machinery/computer/teleporter{dir = 8},/turf/simulated/floor/tiled/dark,/area/teleporter)
-"aHM" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/teleporter)
-"aHN" = (/turf/simulated/floor/tiled,/area/teleporter)
-"aHO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"aHP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"aHQ" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aHR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"aHS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/teleporter)
-"aHT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aHU" = (/obj/machinery/teleport/station{dir = 2},/turf/simulated/floor/tiled/dark,/area/teleporter)
-"aHY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_eva)
-"aIb" = (/turf/space,/area/shuttle/antag_space/docks)
-"aIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aId" = (/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar,/turf/simulated/floor/tiled,/area/teleporter)
-"aIf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"aIh" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/teleporter)
-"aIi" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aIj" = (/obj/machinery/teleport/hub{dir = 2},/turf/simulated/floor/tiled/dark,/area/teleporter)
-"aIl" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aIn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aIo" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aIp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aIs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aIu" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled/dark,/area/teleporter)
-"aIv" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled/dark,/area/teleporter)
-"aIy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aIA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"aIM" = (/obj/effect/floor_decal/sign/dock/one,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aIO" = (/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aIR" = (/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aIS" = (/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aIT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aIU" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aIY" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"aJa" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"aJh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_airlock)
-"aJi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"aJj" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "interior access button"; pixel_x = 24; pixel_y = 25; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
-"aJk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
-"aJl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aJm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aJn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/atmospherics/binary/passive_gate/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aJo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"aJr" = (/turf/space,/area/shuttle/trade/station)
-"aJs" = (/turf/simulated/wall/r_wall,/area/engineering/storage)
-"aJw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aJx" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aJy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aJV" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage)
-"aKb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aKl" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/soap,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aKr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aKt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aKz" = (/obj/machinery/atmospherics/pipe/zpipe/up,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{icon_state = "16-0"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower)
-"aKN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aKQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aKU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Unisex Showers"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aLc" = (/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = null; name = "Holodeck"; req_access = list()},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monofloor,/area/holodeck_control)
-"aLh" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"aLi" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"aLj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aLl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aLp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
-"aLr" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/camera/network/engineering{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aLy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
-"aLK" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aLX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aLY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMa" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "CE Office"; sortType = "CE Office"},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aMl" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aMp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aMr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aMt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/railing,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aMx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aMB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"aML" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aMZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aNa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aNb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"aNd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
-"aNe" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
-"aNo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "CEdoor"; name = "Chief Engineer"; req_access = list(56)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/chief)
-"aNr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring)
-"aNF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
-"aNH" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
-"aOj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aOL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aOO" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/holodeck_control)
-"aOS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aOW" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = 10; req_one_access = list(10,24)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = 10; req_access = list(10)},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aOY" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aPa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aPj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aPq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/engineering/foyer)
-"aQa" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aQh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aQk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"aQl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aQn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aQs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/engineering{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aQv" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"aQw" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aQD" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aQJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aQQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aQW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aQX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/engineering/foyer)
-"aQZ" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aRb" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief)
-"aRc" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/carpet,/area/engineering/foyer)
-"aRd" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"aRr" = (/obj/machinery/atmospherics/valve/open,/obj/structure/railing{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aRw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"aRy" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aRA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
-"aRV" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aRX" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"aRZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aSa" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/computer/station_alert/all{icon_state = "computer"; dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aSe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/obj/machinery/button/windowtint{id = "ce_office"; layer = 3.3; pixel_x = 26; pixel_y = 29},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = 26; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 38; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/airlock{id = "CEdoor"; name = "CE Office Door Control"; pixel_x = 26},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"aSo" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"aSu" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aSz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring)
-"aSB" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aSC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_eva)
-"aSD" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aSF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aSL" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/vending/cola,/turf/simulated/floor/carpet,/area/engineering/foyer)
-"aSO" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aTi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aTm" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"aTA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aTE" = (/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aTJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aTK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aTL" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aTQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aTR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"aTW" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/reagent_containers/food/snacks/snakesnack,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
-"aTX" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aUk" = (/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aUl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aUm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aUn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aUo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aUp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/engineering,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
-"aUE" = (/obj/structure/railing,/obj/structure/disposalpipe/segment,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aUF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/medical/lite,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aUI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aUU" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
-"aUX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aVx" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/holodeck_control)
-"aVz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aVB" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = -32},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = -32; specialfunctions = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aVG" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
-"aVH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aVK" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aVN" = (/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aVP" = (/obj/machinery/computer/power_monitor{icon_state = "computer"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aVW" = (/obj/machinery/computer/rcon{icon_state = "computer"; dir = 1},/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aWd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aWj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"aWn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aWJ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aXl" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control)
-"aXw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/holodeck_control)
-"aXy" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control)
-"aXC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/hatch{name = "Server Room"; req_access = list(59); req_one_access = list(19)},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
-"aXR" = (/obj/structure/window/basic{dir = 1},/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_x = 0; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/chief)
-"aXX" = (/obj/structure/table/reinforced,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aXY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
-"aXZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/foyer)
-"aYa" = (/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer)
-"aYb" = (/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 = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer)
-"aYc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
-"aYf" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down{dir = 1},/obj/structure/cable{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/disposalpipe/down{dir = 8},/turf/simulated/open,/area/maintenance/station/eng_lower)
-"aYg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/foyer)
-"aYt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aYE" = (/obj/structure/table/reinforced,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 10; pixel_y = 36},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aYF" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aYH" = (/obj/structure/table/reinforced,/obj/item/weapon/rcd,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aYJ" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/device/radio{pixel_x = -4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aYW" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/holodeck_control)
-"aZg" = (/obj/structure/table/reinforced,/obj/item/device/megaphone,/obj/machinery/keycard_auth{pixel_w = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"aZn" = (/obj/machinery/computer/security/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
-"aZq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aZr" = (/obj/machinery/computer/atmos_alert,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aZP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"aZU" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aZV" = (/obj/effect/floor_decal/corner/yellow/full{dir = 8},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge)
-"aZW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bay" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"baA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/reinforced,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"baI" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"baQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"baT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"baV" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/machinery/camera/network/engineering{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/telecomms/relay/preset/tether/station_mid,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
-"bbs" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bbx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bbE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bbT" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bch" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bck" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"bcl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"bcn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"bcp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"bcr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"bcs" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bcw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"bcx" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"bcE" = (/obj/effect/floor_decal/corner/yellow/full{dir = 1},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bcK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bcO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bdi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera/network/tether{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bds" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
-"bdu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdW" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bdZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bed" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bee" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bei" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bej" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bek" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bem" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bep" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"ber" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bev" = (/obj/structure/noticeboard{pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bez" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/computer/id_restorer{dir = 1; pixel_y = -28},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"beK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"beM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"beN" = (/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"beP" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair,/obj/machinery/camera/network/engineering,/turf/simulated/floor/carpet,/area/engineering/foyer)
-"beS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"beY" = (/obj/machinery/door/airlock/multi_tile/metal{dir = 2; icon_state = "door_closed"; name = "Cryogenic Storage"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
-"bfk" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bfo" = (/obj/structure/window/reinforced,/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/foyer)
-"bft" = (/obj/item/modular_computer/console/preset/command{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"bfv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"bfF" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bfG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"bfJ" = (/obj/structure/sign/directions/command{dir = 4},/obj/structure/sign/directions/elevator{dir = 4; pixel_y = 8},/turf/simulated/wall,/area/tether/station/stairs_one)
-"bfQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bfT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
-"bfW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway)
-"bfY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway)
-"bgf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bgr" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bgC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bgD" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bgE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bgF" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bgG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"bgH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"bgJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 32; pixel_z = -8},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"bgN" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/camera/network/tether,/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"bgO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
-"bha" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bhc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bhg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/hallway/station/docks)
-"bhj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"bhr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bht" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bhH" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bhJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bhK" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bhL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bid" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"bir" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
-"biC" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"biK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
-"bjo" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bjt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bjC" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "hop_office_desk"; name = "HoP Office Privacy Shutters"; opacity = 0},/obj/machinery/door/window/northleft{name = "Reception Window"; icon_state = "right"; dir = 1},/obj/machinery/door/window/brigdoor/eastright{dir = 2; name = "Head of Personnel's Desk"; req_access = list(57)},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bjX" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bkm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled/steel_grid,/area/tether/station/stairs_one)
-"bkp" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/tools)
-"bkq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks)
-"bks" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools)
-"bkx" = (/obj/structure/table/reinforced,/obj/item/stack/material/plasteel{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"bky" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bkC" = (/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bkE" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bll" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway North"; dir = 9},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"blr" = (/obj/machinery/computer/card{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"blx" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "hop_office_desk"; layer = 3.3; name = "Desk Privacy Shutter"; pixel_x = -29; pixel_y = 29},/obj/machinery/button/windowtint{id = "hop_office"; layer = 3.3; pixel_x = 26; pixel_y = 29},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"blF" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue_hop,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"blS" = (/obj/effect/floor_decal/corner/blue/full{dir = 1},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bmc" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge)
-"bmv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bmA" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bmM" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bne" = (/obj/machinery/vending/tool,/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled,/area/storage/tools)
-"bnl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/hallway/station/docks)
-"bno" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/hallway/station/docks)
-"bnv" = (/obj/structure/noticeboard{pixel_x = -32},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 10},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bnw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"bnB" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/flora/pottedplant,/obj/machinery/camera/network/command{c_tag = "Bridge Northeast"; dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bnI" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
-"bnL" = (/obj/machinery/disposal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/trunk,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bnW" = (/obj/machinery/computer/communications,/obj/machinery/keycard_auth{pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bnY" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/landmark/start{name = "Colony Director"},/obj/item/weapon/storage/secure/safe{pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bnZ" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"boc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bou" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
-"boH" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/bridge)
-"boL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge)
-"boM" = (/obj/structure/disposalpipe/sortjunction/flipped{name = "HoP Office"; sortType = "HoP Office"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"boN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"boU" = (/obj/machinery/recharger/wallcharger{pixel_x = 32; pixel_y = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bpd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bpf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bph" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/tether{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bpi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bpm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bpv" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/tools)
-"bpz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor,/area/hallway/station/docks)
-"bpD" = (/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/photocopier,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bpJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/fireaxecabinet{pixel_x = 32; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bpM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bpQ" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"bqb" = (/obj/structure/cable/green{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{name = "Unisex Restrooms"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/toilet)
-"bqf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bqj" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/hallway/station/docks)
-"bql" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donut,/obj/structure/cable/green{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/dark,/area/bridge)
-"bqo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bqs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bqx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/item/device/radio/beacon,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bqA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bqD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bqF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bqP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bqR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge)
-"bqU" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"brd" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"brf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"brj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = list(57)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/hop)
-"bro" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"brv" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/storage/tools)
-"brD" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"brV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"brX" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"bsl" = (/obj/structure/flora/pottedplant,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bsv" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bsH" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/machinery/button/remote/blast_door{id = "bridge blast"; name = "Bridge Blastdoors"; pixel_x = 0; pixel_y = -20},/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bsM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bsN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bsO" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bsP" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/omnihud,/obj/machinery/light,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bsR" = (/obj/machinery/camera/network/command{c_tag = "Head of Personnel Office"; dir = 9},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop)
-"bto" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"btr" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"bts" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"btt" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"btu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bty" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"btC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"btF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"btM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"btO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"btS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bvb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge)
-"bvd" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals8{dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bvk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bvs" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"bvt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bvu" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bvE" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bvN" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bvS" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bvW" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/radio{pixel_x = 2; pixel_y = 3},/obj/item/device/radio,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bvY" = (/obj/machinery/photocopier/faxmachine{department = "Bridge"},/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bwb" = (/turf/space,/area/shuttle/tether/station)
-"bwc" = (/obj/item/device/aicard,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bwh" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bwl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge)
-"bwn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bwq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway)
-"bwx" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bwV" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one)
-"bxa" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "16-0"},/obj/effect/decal/cleanable/dirt,/obj/structure/symbol/da{pixel_y = 32},/turf/simulated/floor,/area/maintenance/station/bridge)
-"bxe" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two)
-"bxE" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 2; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain)
-"bxJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "captaindoor"; name = "Colony Director's Office"; req_access = list(20)},/turf/simulated/floor/tiled/dark,/area/crew_quarters/captain)
-"bxL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 2; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain)
-"bxY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway)
-"byf" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"byy" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"byA" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
-"byD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"byE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"byG" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"byN" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"byP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"byV" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"byW" = (/obj/machinery/camera/network/command,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = -32; pixel_y = 0},/obj/structure/closet/emcloset,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"byY" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/device/megaphone,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bza" = (/obj/structure/table/woodentable,/obj/item/weapon/melee/chainofcommand,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/weapon/coin/phoron{desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; name = "limited edition phoron coin"},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bzc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain)
-"bzn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"bzq" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bzI" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/captain)
-"bzR" = (/obj/structure/flora/pottedplant,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bzY" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bAk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain)
-"bAr" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bAv" = (/obj/machinery/cell_charger,/obj/structure/table/steel,/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/substation/command)
-"bAz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/command)
-"bAB" = (/obj/structure/table/reinforced,/obj/item/device/megaphone,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop)
-"bAC" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/command)
-"bAK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/command)
-"bAP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge)
-"bAQ" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge)
-"bAS" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/bridge)
-"bBo" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bBr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Private Restroom"; req_access = newlist(); req_one_access = newlist()},/turf/simulated/floor/tiled/white,/area/crew_quarters/captain)
-"bBw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bBz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bBH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/command{id_tag = "captaindoor"; name = "Colony Director's Office"; req_access = list(20)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/captain)
-"bBJ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bBK" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bBP" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/command)
-"bBY" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/command)
-"bCb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/bridge)
-"bCd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; name = "Command Substation"; req_one_access = list(11,24,47)},/turf/simulated/floor,/area/maintenance/substation/command)
-"bCg" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bCh" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/bridge)
-"bDr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bDv" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled/dark,/area/bridge)
-"bDX" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bEa" = (/obj/structure/table/woodentable,/obj/machinery/computer/skills,/obj/item/device/perfect_tele{desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Colony Director's, and they are authorized to use it."; name = "director's translocator"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bEe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bEC" = (/obj/machinery/disposal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bEG" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bEN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bES" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/maintenance/substation/command)
-"bEW" = (/obj/structure/flora/pottedplant,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bFe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Electrical Maintenance"; req_access = list(19)},/turf/simulated/floor,/area/bridge_hallway)
-"bFf" = (/obj/structure/flora/pottedplant,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bFg" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Command"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/command)
-"bFp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/station/bridge)
-"bFE" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"bFH" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bFN" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled/dark,/area/bridge)
-"bFP" = (/obj/item/weapon/bedsheet/captain,/obj/structure/bed/padded,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bFQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Colony Director's Quarters"; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bFT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bFV" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bFW" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"bGf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bGo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"bGy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bGQ" = (/obj/machinery/light/small,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bGW" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bHe" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bHg" = (/obj/structure/flora/pottedplant,/obj/machinery/button/remote/blast_door{id = "cap_office"; name = "Security Shutters"; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bHi" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/armor/captain,/obj/item/clothing/head/helmet/space/capspace,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/card/id/gold/captain/spare,/obj/machinery/door/window/brigdoor/westright{name = "Colony Director's Storage"; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bHk" = (/obj/machinery/camera/network/command{dir = 1},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bHt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a2_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bHu" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bHw" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a2_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a2_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a2_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a2_dock_pump"; tag_chamber_sensor = "d1a2_dock_sensor"; tag_exterior_door = "d1a2_dock_outer"; tag_interior_door = "d1a2_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bHy" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a2_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"bHz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"bHG" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "specops_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bHN" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bHO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "specops_dock_pump"},/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "specops_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "specops_dock_sensor"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bHV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "specops_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bHY" = (/obj/machinery/camera/network/tether{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bIL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway)
-"bJl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"bJm" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bJJ" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/teleporter)
-"bJQ" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/crew_quarters/captain)
-"bJT" = (/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/teleporter)
-"bJY" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/teleporter)
-"bKo" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"bLL" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/teleporter)
-"bLN" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/teleporter)
-"bLV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/teleporter)
-"bMd" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"bMi" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/teleporter)
-"bML" = (/obj/machinery/hologram/holopad,/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/teleporter)
-"bMN" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"bNK" = (/obj/structure/closet/crate,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/teleporter)
-"bNL" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/teleporter)
-"bNV" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/teleporter)
-"bNW" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/teleporter)
-"bNZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"bPc" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bPj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bPl" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bPp" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bPq" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bPr" = (/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a1_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a1_dock_pump"; tag_chamber_sensor = "d1a1_dock_sensor"; tag_exterior_door = "d1a1_dock_outer"; tag_interior_door = "d1a1_dock_inner"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a1_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bPs" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a1_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"bPt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d2a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two)
-"bPx" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two)
-"bPz" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d2a1_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d2a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2a1_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d2a1_dock_pump"; tag_chamber_sensor = "d2a1_dock_sensor"; tag_exterior_door = "d2a1_dock_outer"; tag_interior_door = "d2a1_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two)
-"bPD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"bPE" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bPF" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bPN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bPO" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bPP" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"bPQ" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"bPS" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bPX" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bPY" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bQa" = (/turf/simulated/floor,/area/tether/station/stairs_one)
-"bQc" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bQd" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bQe" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "trade_shuttle_dock_airlock"; pixel_x = 28; pixel_y = 0; req_one_access = list(13); tag_airpump = "trade_shuttle_dock_pump"; tag_chamber_sensor = "trade_shuttle_dock_sensor"; tag_exterior_door = "trade_shuttle_dock_outer"; tag_interior_door = "trade_shuttle_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bQj" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bQk" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "nuke_shuttle_dock"; pixel_x = -28; pixel_y = 0; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bQl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bQm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "trade_shuttle_dock_sensor"; pixel_x = 30; pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bQq" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/camera/network/tether{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bQt" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "nuke_shuttle_dock_sensor"; pixel_x = -30; pixel_y = 8},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bQu" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bQv" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"bQx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bQz" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"bQC" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "exterior access button"; pixel_x = -28; pixel_y = -6; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bQD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bQF" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bWH" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/wood,/area/crew_quarters/captain)
-"bXl" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bXm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
-"bXn" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"bXs" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/action_figure,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/binary/passive_gate/on,/turf/simulated/floor/plating,/area/hallway/station/docks)
-"bXG" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bXI" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bXJ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bXK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"bYf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
-"bYg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
-"bYh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
-"bYi" = (/obj/structure/closet/crate,/obj/random/junk,/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bYj" = (/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bYk" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bYl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bYm" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bYr" = (/turf/space,/area/syndicate_station/arrivals_dock)
-"bYt" = (/obj/structure/window/reinforced,/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/engineering/foyer)
-"bYE" = (/obj/machinery/recharge_station,/turf/simulated/floor/carpet,/area/engineering/foyer)
-"bYJ" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/machinery/telecomms/relay/preset/tether/station_high,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
-"bYK" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/telecomms/relay/preset/tether/station_low,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
-"bYN" = (/obj/item/device/instrument/violin,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bYP" = (/turf/simulated/wall,/area/vacant/vacant_restaurant_lower)
-"bZc" = (/obj/structure/table/reinforced,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/wood,/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"bZd" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"bZi" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"bZk" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/caution/cone,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZt" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"bZv" = (/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower)
-"bZz" = (/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZD" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZF" = (/obj/structure/closet/crate,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZH" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower)
-"bZJ" = (/obj/random/drinkbottle,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower)
-"bZK" = (/obj/item/weapon/bananapeel,/obj/item/trash/unajerky,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZO" = (/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZP" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cell/potato,/obj/item/frame/apc,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZQ" = (/obj/random/trash,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZR" = (/obj/random/junk,/obj/structure/closet,/obj/random/maintenance/clean,/obj/item/taperoll/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZS" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZT" = (/obj/structure/stairs/west,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"bZY" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"bZZ" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"cae" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/camera/network/tether{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"cah" = (/obj/structure/girder,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
-"cak" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"cal" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
-"cbY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/airless,/area/engineering/atmos/backup)
-"cce" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"ccg" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
-"cch" = (/turf/space,/area/shuttle/cruiser/station)
-"ccl" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/thermoregulator,/turf/simulated/floor,/area/engineering/storage)
-"ccx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/blue/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/bridge_hallway)
-"col" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"dlV" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"ezX" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two)
-"eAf" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"gkC" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/bridge)
-"hPi" = (/obj/machinery/light/small,/turf/simulated/floor,/area/engineering/shaft)
-"jys" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"jRS" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
-"klO" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
-"kCH" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"kLN" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "tether_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "tether_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "tether_dock_pump"; tag_chamber_sensor = "tether_dock_sensor"; tag_exterior_door = "tether_dock_outer"; tag_interior_door = "tether_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"lxQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway)
-"lGA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"mbn" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "Library"; sortType = "Library"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"mNU" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"nov" = (/obj/structure/railing,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/engineering/shaft)
-"oEH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/docks)
-"qBc" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"scB" = (/obj/machinery/computer/shuttle_control/tether_backup{icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"tKI" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "tether_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
-"uiN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/donut/chaos,/turf/simulated/floor/grass,/area/hallway/station/atrium)
-"uWS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = 28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
-"vbm" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"vyI" = (/mob/living/simple_mob/animal/passive/bird/parrot/poly,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
-"wlD" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_one)
-"xfY" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
-"xMk" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor,/area/engineering/shaft)
-
-(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahWahVahVahVahVahVaaaaaaaaaahVahVahVahVahVahVahWahVahVahVahVahVahVahVahWahWaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabnabnabnaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabQabSabRabTabQaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaacaacaacaaaaaaaajackabSacaabTackacbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaacaacaacaacaacaacaacabCabCaamackackackaceabCabCaaaaaaaaaaataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJagJagJagJagJaanagJagJagJagJacLacLacLacLacLacLacLacLaczaczaczaacaacabCacAacjackackacjackacBabCaacaacaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacLaasaaAaazaaGaaCaaLacLaaNacRaczaacaacabCadgacjackadhacjacjadiabCaacaacaacaacaataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaanagJaaQagJagJacJacJacJacJacJacJacJacJacJacLaaRaaXaaXabeabbabgabfadvaduaczaacaacabCabiackackacjacjackadwabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaarabrabuabtaebaeaabwaaBabyabxaczaacaacabCaegaefackacjacjachabAabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaaEabDabGabFabIabHabMaaFabOabNarMarMarMarMarMabPackackackaeLabCabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjabjabjacJacJacJacJacJacJacJacJacJacJabWalFalFaaUalFalFalFacdacuacqarMacxacOatbarMabCabCaaYabCabCabCaacaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJagJacJabkacJagJacJacJacJacJacJacJacJacJacJadfacXadoafMafQaadagPafPadsadqadCadtadFadDadIadGadKadGadGadLabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfadQagNafLagOafLahZafPadVadUarMadWadZahoarMahqackackackaehaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJaewaetaaSaibaezaidaeCaeAaeEaeDaJsaJsaJsaJsaJsaJsaJsaJsackaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaeQagNafLaiQaiPaeSafPacuaeVaJsaiTaiTaeWaeXaiVcclaJsachaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaffalrafiafjajyafkafPacuafmaJsafpajDaeWaeWaJVafsaJsackaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaanacJacJacJacJacJacJacJacJacJacJacJacJacJacJalFalFalFalFalFafSalFacdafZafXaJsakmakmaeWaeWaknakoaJsakqagfaikackackackackackackackackackackackackackackackackackackackaikaataataataacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksaksacJacJacJacJacJacJacJacJaiMagFagIajtagLakOahdaiMacuaeVaJsakRakSaeWaeWakTakTaJsapiahfaikackackackackackackackackackackackackackackackackackackackaikaataacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgaksaksacgacgacJacJacJacJacJacJacJacJabqahsahyabsahBalbahKahDahOahMaJsalBalDahRahTalEalHaJsahYaeGaikackackackackackackackackackackackackackackackackackackackaikaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgacJacJacJacJacJacJacJacJaiMaiyaiCajtaiDamlaiFaiMadVaiGaJsaLhaLiaeWaiNamqamqaJsaiRaiOaikackackackackackackackackackackackackackackackackackackackaikadOadOadOadOadOadOadOadOadOadOadOaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgagJagJagJajpagJagJagJagJaiMaiMaiMaiMaiMaiMaiMaiMajCajBaJsajGaLiaeWaiNamOajIaJsamRaiOaikackackackackackackackackackackackackackackackackackackackaikajvajwahvajzajAaiZajdajhajxajxadOaacaacadPadPadPadPadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaczadsakeaJsakgakjaeWaklakkakpaJsangaiOaikaikackackackackackackackackackackackackackackackackackackaikajeajiajjajjajjajlajLajPajSajXadOaacaacadPaeBahxahzadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacarqarqarqarqarqaczaczaczaczaczaczaczanlakXakWaJsaJsaJsakZalcaJsaJsaJsaikaeGackaikackackackackackackackackackackackackackackackackackackaikakJajEaeyaeyaeyakKaeyaeyalJajxadOaacaacadPahAahSahXadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgalxalwalzabZaacaacaacarqnovxMkalKalGaczanLanPaaeaowalRalWanRambalZamfamcamkamjamnanZamsampaczaeGackaikackackackackackackackackackackackackackackackackackackaikajmajnajqajqajqajHaeyaeyalialCadOaacaacadPaiiaiJaiKadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWabZabvabBabEabZabZabZabZabZalGhPianeancaczaopaoraoqaoqaoqaoqanoanranqanuantantantanzanyanCanBanFanDackaikackackackackackackackackackackackackackackackackackackaikajMakMalhajQajRajJaeyaeyaljaeyadPadPadPadPaiLaiLaiLadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaohaoXaojaolaokaonaccaooabZaczaczaotaczaoyaoZapcapbapbapbapbapbapeaoBaoFapgapgapgaijapgapgapgaijaoHjRSaikackackackackackackackackackackackackackackackackackackaikadOadOadOadOadOajNaeyaeyaljalladbakfaiSaiUaiSaiSakhadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahVahVahVaaaaaaahWaohaqKaqIappapoaprapqapuapsapwapvapyapxapDapBapIapGapKapJapJapJapMapLapgapNapPapOapTapQapQapXaijapUachaikackackackackackackackackackackackackackackackackackackaikajTajUaloajUajTakiakrakraktakuakcakwakxakyakzaiYajaadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaacbYaqeaqfadSaqaaqJaqhadYaqjaqiaqlaqkaqoaqmaquaqqaqDaqBaqFaqEaqQaqOaqSaqRapgaqvajFaqGaqGajFapQaqHaijapUachaikackackackackackackackackackackackackackackackackackackaikakAajVajVajVajWakBajOajOakCakDadbajbakEakFakGaiSakHadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahWahWahWahWabZarzaryaRdccearBadeaqMaqMaqMaqMacSaqNaqNarEarKaqNaqNacSarVarTaqTarXasgasbasnaskasraspasxassaijapUacjaikackackackackackackackackackackackackackackackackackackaikajYajZakaakbakIakUakdalkalpalqadPajcadPakLalualealeadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlarQarnatgaqLatfaqMathatjarraruartarxatkatBatAarFaqNarVarTarHatFapgarIatIatGarNatJapQarOaijatTaiRaikackackackackackackackackackackackackackackackackackackaikadOadOadOadOakNakPadOadOadOadOadPaizadPadPadPajfajfadPaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlccgauWarRauYauXaqMavdavhavgavhavhavoavmaslavqasmaqNarVavwavzavxavDavBajFavFavIajFapQavLaijavPapiaikackackackackackackackackackackackackackackackackackackaikajoacmahwajgakValUakYafCaacaacadPadPadPaacadPadPadPadPaacaacaacaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlarnawkaswaszasyaqMasAaenaenaenaenaenasUasUatAawBacSawMawDarHawOapgatdapQawRapQapQapQawTaijavPaiXaikackackackackackackackackackackackackackackackackackackaikajoacmalLalaajkakQalfafCaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWabZabZarkaxBaxAaxHaxGaqMbkxaxPaxObZcatQbZdatNatSaxUaxYaxWatXatWarHaybapgatYatZawRayiauaalsaucaijaysabCaikaikaikaikaikaikafCafCafCafCaaTaaTaaTaaTaaTaaTaaTaaTaaTafCafCafCafCalgafCafCafCafCaacaacaacaacaacaacaacaacaacaacaacaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahWahWahWahWabZaueaueaueaueaueaqMaqMaqMaqMacSaukaenaulazeaenaenaqNauwauvauyazfauzauzauzazkauzauzauzauzaijavPanEachazDazBazBazJazJazIazXafYacfagdagqafgaahaahaahaakafgaiWajrajsafeagvaldajuaALaAHashashashashashashashashashashashashaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaAQavfavfatOaARaATaASaBlamdaBpaBmavsaBqaqNbZiafUasUasUaenawlaByatXawnaBBaBAaAWaBCaBXaBDaBEaAWaciaDDaaVavPalQaBHaBRalQalTalTalTalTagwabXacnacmaCeacpacpacpacpacpxfYacpacpacpacpacpacractaCxaCwaCyamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaCBaCBatOauAauAauAauBaJlaCEauAauAaJwaCMaJxaenasUasUaCPaCQacSaCTaCRaKtaCVaAWaAWaAWaKNaLjaKUaLlaDjaaVapUalQaDsaDMalQasuaDPamEalTaDVacwadzacyacyacyacFamJacmacmadHacmamJacFacyacyacyadabNZaDZamMamgamgamgamgamgamgamgamgamgamgamNalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaEaaLIatOaEbauAauAavjaLXaEfauAauAaJwaCMaJxaMZaMBaNbaNaaenaqNaEzaExaKtaEAaAWaEEaBXaOLaEMaAWaETaERaaVapUaBHaEWaEXalQaFcaEZaFfaFeaFhacmacyacyacyacGacIamCamoadxadyamtamDacKacGacyacyacyadHaFzamMamgamgamgamgamgamgamgamgamgamgaFIalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaFKaFJatOaFLaFOaFLaFOaQvaFXbZtcalcakaqNaQZaQZaRwaRAaRyaRyaqNaEzaCRaKtaGsaAWaAWaAWaRZaGxaaVaaVaaVaaVaGyaGPaGIaofalQaogavSaoialTaHbacmacYacDadcacFacIacEacHadnagaacHamiacKacFacYuiNadcadHaHzamMamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaHTaHQatOatOaSCaSCaSCaSCaHYaSCaSCaSCacSaqNaqNaByaIfaqNaqNacSaEzaIiaKtaIlaAWaBCaBXaTiaInaaVatpaIoamzaIpalQalQalQalQaoOaoOalTalTaIsacmacYadladcacGacIacEacHamaamyacHamiacKacGacYadladcadHaITaoVamgamgamgamgamgamgamgamgamgamgalAaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaJjaJnaJmbdsaoqaTKaTJaJyaTLaoqaoqaalaoqaUlaTQaUoaUnaTKaUpaUlatWaKtaKbaAWaAWaAWaUUaKlaaVapiaKraUXaKzaeOaeOaeOaeOaeOaeOaesaeraeMacmacyacyacyacFacIacEacHamGadMacHamiacKacFacyacyacyadHaKQaLcamgamgamgamgamgamgamgamgamgamgalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaLpaLtaLraLAaLyaLGaLCaLKaLHaLOaLLaLUaLPaMaaLYaMdaMcaMgaLUaLPaMhaMkaMjaAWaMlaBXaUUaMpaaVaMtaMraMxasvaeOafyafyafyafyaeOaePacmadHacmacTacyacyamJacIacEacHacHacHacHamiacKamJacyacyacTadHaMLamMamgamgamgamgamgamgamgamgamgamgalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaNeaNdaRbaRbagcagcagcagcaNoagcaRbaRbaltaltaNraltaltalvaXZaXZaXZaNFaNHaXZaoJaoJaoJaaVaaVaaVaqsaqtaOjaYfaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacIammammamFamFammammacKacmacmacmacmadHaFzamMamgamgamgamgamgamgamgamgamgamgaOOalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaGBaGBaRbaYEaYHaYFaYJaBgaOSaRVaZgaRbaOYaOWaPaalyalIaltaoGaZraZUaPjaZWaBwaPqbePbYEaoJaacaikamAamBarbakvaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacHacUacUacUacUacUacUacHacmacmacmacmadHaCwamMamgamgamgamgamgamgamgamgamgamgarhalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWagiaQaaRVaRXbaAaTmaQkaQhaQlaRbaQsaQnaQwalXamYaltbbsaQDbbxaQJaQWaQQaQXaQXaRcaoJaacaikardarAaRrarCaeOafyafyafyafyaguafzacmadHacmacTacyacyacFacHacHacHacHacHacHacHacHacFacyacyacTadHaCwamMamgamgamgamgamgamgamgamgamgamgalAalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagiaSabcpaSebcnbcrbcwaRVaSuaRbandamZasSanQawmaSzbeJaSDbeLaSFbeNbeMbfobYtaSLaoJaacaikarZasaaSOascaeOaeOaeOaeOaeOaeOafAacmadHacmacyaddaddaddacGacFamIacmacmamIacFacGaddaddaddacyadHaTAashashashashashashashashasiamMasialAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagibftbfvaRXaTRaRXbfTklOaTWaRbaTXaIOaIOaSBaXXaltaoIaUkbgCaUmbgEbgDaoIbgFaoJaeiaacaikaUEasDaUIaUFafCafCafCafCafCafCafDacmadHacmacyadladladlacyacyacyacmacmacyacyacyadladladlacyadHaCwasIasJasKasLaSoasNasOasIasPasQaVxalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaRbbhjbnwaVzaVBbnIaVHaVGvyIaRbaVNaVKaVWaVPaZnaltaTEbXGbXIaWdbXKbXJaoIbgFaoJaacaacaikaqsatoaWjatqafCafEafJafFafNafCaWnacmadHacmacyacCadEamuamradladcacmacmacYuiNadkadEamuacZacyadHaWJasIasJasKatxatyasNasOasIaXwaXlaXyalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWaRbaRbaXCaRbaRbaXRaRbaRbaRbaRbalvalvalvalvalvalvaoJatHaYaaXYaYcaYbaYgaYgaoJafCafCagbafCafCacoafCafCafnageageaggaYtaghacmadHacmacyadmamvamvamwadladcacmacmacYadlamxamvamvamHacyadHaFzasIasJasKatxatyasNasOasIaYWalAalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbbYfbYhbYgaRbaRbaRbbYibYjbYjbYlbYkbYmbYlbYlacsagRagQagTaZqagVagUagWagWagYagXagYagZahbahaaZPahcahGahFahHacpacrahIacpacpbayahJacyacyacyacyacyacyacTacmacmacTacyacyacyacyacyacyacWbaIasIasIasIauobaQasIasIasIbaTaurausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbbYJbaVbYKaRbbYNbYPbYjbYjbYjbYlacvamhacMadpadRadTadXadXaecaeeacpacpacpacpacpahHaimacpacpbbEacpaipaioaiqacpacpairacpacpacpaisahHacpacpaCxacmbbTacpacpacpacpacpacpacpacpacpmbnqBcbchbclbckbcxauZavaaeqavcasIbcObcKausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbaRbaRbaRbaRbbYPbYPbYjbYjbYjbYjbYjbYjbZkbZmacsajKbdibdqbdnbdubdrbdFbdxbdKbdHbdSbdLbdWbdTbdZbdTbeebedbehbegbegbeibegbegbegbedbekbejbepbembevberbeBbezbezbeEbeHbeFbeKaqgaqxagoagpbeSbeYavZavZawaawbagzavcasIbaTbfkausaacaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYPbYjbYjbYjbYjbYjbZzbYlbfFawsawpbfGbfJawsawsawsawtawtawtawuarebfQarfaaTaaTaaTawyawzawzawzawzawzawzawzawzawzawAbfWawCbfYawEawFawGawGawGawGawHawIawJawKawKalMaePbgfasIasIasIasIasIasIasIasIbcObgrausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYjbYjbZFbZDbZmbYjbYjbYlbYjawsawPbgGbgJbgHbgNawsawUbgObrvawubhcafoawZawubhgaxbawyaxcaxcaxcaxcaxcaxcaxcaxcaxdawEaxeaxfaxgawEbhrbhtaxjaxjaxjbmMawIaxkaxlawKamLacmbhHbhKbhJbhJbhLbidbhLbhJbhJbiraxtausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZHbZJbZvcahbYjbZDbZDbZmbYlbZKbYjbYjawsaxuaxvaxwaxxbiCawsaxzalObiKawuaxCafqafrawuaxDaxEawyaxcaxdaxcaxcaxcaxcaxcaxcaxcawElxQbjtbjoawEagjbjCagkagkagkaglawIaxkaxMawKamPaCebjXausausausausausausausausausausausaaqaaqaaqaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZHbZHbYPbZObZPbYjbZzbYlbYjbZQbYjawsbkmawsaxQaxRaxRawsbkpalPbksbkqbkyaftafuawuaxZbXsawyafvafwafwafwafwafwafwafwafxawyayeayfbllawIblrblxayjblFaylaymawIaynbmcawKamLacmbmvbmAageatsageatuattabVabYaclaauaavaawaayaaDaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbYPbYPbYPbYPbYPbYPbZRbYlbZSbYlbYlbYlbYjbYjawsaywayxawsayyayyawsbnealSayBayCayDafBafGaekbnobnlgkCaZVayKbcEbkCayNblSbkEayQbnBgkCaySayTayUawIbnLayWayXayXayXbnZawIayZazaawKbocamQamSatKacmacmacmacmacmacmaaoaapaaIaaJaaKaaMaaPaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacbYPbZTbYjbYjbYlbZDbZDbYjbYlbYjbYjawsaxRbouawsawsawsawsazhalSaziawuazjbhaawZawuaelazlawyazmaznazoazpaznazqazraznboHboLaxFboMafKagmboNayWazyazzazAboUawIaxkawKawKauhaumamTbpfbpdalYbphbpibpibpmaaxaexaauaaWaaZabaabcaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaacaacaacaacaacbYPbZTbYjbYjbYjbZmbYjbYlbZkbYjbYjawsazMazNawsbQabQaawsazOazObpvawuazQbhaazRawubpzazlawybpDazUazVazUazUazUazWazUbpJawyazYayTazZagnbpMayWbpQaAdbABaAfawIaxkawKamUaaTamVamWamXaaTaaTaaTaAkaAkaAkbqbaAkaAkabdabhaauaauaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaacaacaacbYPawuawuawuaeFaeFaeFawuaeIaeRawuawsawsawsawsawsawsawsawtawtawtawuaAmbqfaAoawubqjaAqawybqlbqsbqobqAbqxbqAbqDbqAbqFbqRbqPbrdbqUbrjbrfbroayXaAGayXbrDawIaxkawKanaanbanfanhanianjankanmaAkaAOaAPbrVbrXaAkablabmabpabzabJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawubZYbzRbZZaAVaAVbCgaBiaBibslaAZaBaaBbbEWaAVaAVaBdaAXbsvaBfbFfaBhbhaaBiawuawuawuawyaBjaBKaBkbsHazUazUbvkazUbwxawybnvbsNbsMawIaBrbsOaBtaBubsPbsRawIayZawKannanpansanvanwannanxanAaAkaAkaAkbtobtraAkabdabKaauaauaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawubttbtsbtybtubtubtubtubtubtubtCbtubtFbtubtubtubtubtubtMbtFbtubtSbtOaBiawuaacaacawyaBJaBKazUaBLazUazUazUazUaBMbvbaBObsNbvdawIawIawIawIawIawIawIawIayZawKanmanGanIanJanKanpanMannaAkaAOaBUaBVbvsaAkabdabmabLabLaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawucaebvtaBZbvuaBZaBZaBZaBZoEHaBZaBZaBZaBZaBZoEHaBZaBZaBZaBZbvubvEbhaaCcawuaacaacawybvNbvWbvSbwcbvYazUbcsbFNbDvbwlbwhbwnaCnbwqaCpaCqafVaCsaCtaCuawEayZawKanNanOanSanTanUanVannanWaAkaAkaAkaCCaCDaAkabdabUabLabLaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFaCGbwVaCIaCFawuaCJaCJaCJawuawuaCJaCJaCJawuawuaCJaCJaCJawuaCKaCLbxeaCNaCKaacaCOaCOaCOaCOaCObJQaCObxJbxEbxLaCOaCOaCSbxYaCUbyaaCWbyfaCYaCZaCtaCuawEaxkawKanXanmanYaoaaobanpanmaocaAkbyyaDhbyAbvsaAkaaqaaqaaqaaqaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFbyEbyDbyGaCFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCKbyNaDnbyPaCKaacaCOaDpaDqaDraCObyWbyVaDuaDubzabyYbzcaxFbsNaxgaDyaDzaDzaDzaDzaDAaDAaDAaxkawKaodannaoeaosaobannaoeaouamUamUamUamUamUaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKaacaCObzIaDNaDOaCObnWaDQaDRaDuaDubzYbAkazYbsNbArawEbAvbACbAzbAKbxabAQbAPbASawKaovaoxaozanvaoeaoAaoCaoDamUaoEaoKaoLamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEnbBoaCKaacaCOaCObBraCOaCObnYaEraEsaEtaEubBwbBHbBzbBKbBJawEbBPaEBbBYbCdbCbaEFaEGbChawKaoMaoNaoeanvanwaoPanYaoQaoRaoSanYanYamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaENaDFaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEObDraCKaacaCOaEPaEQbDXaCObEebEaaDuaDuaDubECaCOaEVbENbEGbFebESbFgaFbaDzbFpawKawKawKawKaoTaoUaoeaoWaoYapaapdapfaphapjapkaplamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFbFEaFqaFraCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaDJaFtbFHaCKaacaCObFPaFwaFxbFQbFTaDuaDuaDuaDubFVaCOaFBbGfbFWawEaDzaDzaDzaDzaacaacaacaacamUapmapnaptapzaobapAanpapmaoRapCanpapEamUaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypbGoaFTaFUaFVaFWaDFaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbGyaFYaFZaGaaGbaDKaCKaacaCOaGcbGQbGWaCObWHbHeaGibHgbHkbHiaCOeAfbGfayUaGlawEaacaacaacaacaacaacaacamUapFapHanpapRapSapVapWapYapZaqbaqcamUamUaacaacaacaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbHtbHwbHubHyaGzbHzaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbHGbHObHNbHVaGFbHYaCKaacaCOaCOaCOaCOaCOaCOaCOaCOaCOaCOaCOaCOccxbILaGJawEaGKaGKaGKaacaacaacaacaacaqdaqdaqdaqnaqpaqraqdaqwaqdamUamUamUamUaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbJlaGZaFUaHaaDFaDGaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbJmaHcaFZaHdaDKaDLaCKaacaacaacaacaacaacaacaacaacaGKaHfbJJaGKaGKbJTaHiaGKbJYaHkaGKaacaacaacaacaqdaqdaqyaqzaqAaqCaqPaqUaqVaqdaqdaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFaHsaHtbKoaCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaHvaHwaHxaCKaacaacaacaacaacaacaacaacaacaGKaHfaHfbLNbLLbLVaHBbMibMdaHEaGKaacaacaacaacaqdaqWaqXaqAaqAaqYaqZaraarcargaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKaacaacaacaacaacaacaacaacaacaGKaHMaHNaHOaHPbMLaHRaHSbMNaHUaGKaacaacaacaacaqdariaqXarjarmaroarpaqXaqXariaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaaaaabaaaaaaaaaaaaaaaaypaypaypaaaaabbznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaabzqaDJaEnaIcaCKaacaacaacaacaacaacaacaacaacaGKaIdbNKbNLbNLbNVaIhaIhbNWaIjaGKaacaacaacaacaqdarsarvarwarDarGarJarLarParSaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaabznaDEaENaDFaFUlGAaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaacolaDJaEObDraCKaacaacaacaacaacaacaacaacaacaGKaGKaGKameaIuaIuaIuaIvaGKaGKaGKaacaacaacaacaqdarUarParParWarYasdaqAaqAaseaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbFEaIybHzscBmNUaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaIAaDJaFtbPcaCKaacaacaacaacaacaacaacaacaacaacaacaGKaGKaGKaGKaGKaGKaGKaacaacaacaacaacaacaqdasfasjariaqXasoarPariasjasqaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbGoaFTaFUaFVaFWaDGwlDwlDdlVbwbbwbbwbbwbbwbaabaIbaIbaIbaIbaIbbPjezXbXlaGaaGbbPlaCKaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaqdaqdaqdastastastastastaqdaqdaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPpbPrbPqbPsaIMuWSjyskLNtKIbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPtbPzbPxalVaIRaISaCKaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaataataataataataataataataataacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPDaGZaFUaIUaDGaDGwlDkCHvbmbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPEbXnbXlbPNbPFbPOaCKaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaataataataataataataataataataataataataacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbPPaIYbPQaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCFaJabXmbPSaCKaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaataataataaaaaaaaaaaaaaaaaaaataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbPYbPXaFUaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCKaFZbQcbQdaCKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznbQjbQeaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQkbQlaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznbQqbQmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQtbQuaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaabQvbQzbQxaJoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabJmbQCbQFbQDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-"}
+"aaa" = (/turf/space,/area/space)
+"aab" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
+"aac" = (/turf/simulated/mineral/vacuum,/area/mine/explored/upper_level)
+"aad" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
+"aae" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aaf" = (/turf/space,/area/shuttle/excursion/tether_nearby)
+"aag" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/space)
+"aah" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aai" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aaj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aak" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aal" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aam" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aan" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room)
+"aao" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aap" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aaq" = (/turf/simulated/wall/r_wall,/area/tether/station/burial)
+"aar" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aas" = (/obj/machinery/power/smes/buildable{charge = 2e+006; input_attempt = 1; input_level = 100000; output_level = 200000; RCon_tag = "Engine - Core"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes)
+"aat" = (/turf/simulated/mineral/floor/vacuum,/area/mine/explored/upper_level)
+"aau" = (/turf/simulated/wall,/area/tether/station/burial)
+"aav" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aax" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aay" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaz" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/engineering/engine_smes)
+"aaA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes)
+"aaB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aaC" = (/obj/machinery/power/grid_checker,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes)
+"aaD" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aaF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aaG" = (/obj/machinery/power/smes/buildable{charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; output_level = 1e+006; RCon_tag = "Power - Main"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes)
+"aaH" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/tether/station/burial)
+"aaI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock{name = "Burial Services"; req_access = list(27)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/turf/simulated/floor,/area/engineering/engine_smes)
+"aaM" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaN" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aaO" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/pickengine,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aaP" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaQ" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
+"aaR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_x = -25; pixel_y = 0; req_access = list(10); specialfunctions = 4},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aaS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aaT" = (/turf/simulated/wall,/area/hallway/station/atrium)
+"aaU" = (/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring)
+"aaV" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/engi_wash)
+"aaW" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aaX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aaY" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aaZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aba" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/paper{info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abd" = (/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abe" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_smes)
+"abg" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abh" = (/obj/machinery/button/remote/driver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 32; pixel_y = 2},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abj" = (/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
+"abk" = (/turf/simulated/floor/reinforced,/area/engineering/engine_room)
+"abl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"abm" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abp" = (/obj/machinery/mass_driver{icon_state = "mass_driver"; dir = 4; id = "chapelgun"},/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abq" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_interior"; locked = 0; name = "Engine Airlock Interior"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"abr" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abs" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_exterior"; locked = 0; name = "Engine Airlock Exterior"; req_access = list(11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock)
+"abt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abv" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/table/reinforced,/obj/item/device/pipe_painter,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"abw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abx" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aby" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"abz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/tether/station/burial)
+"abA" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abB" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"abC" = (/turf/simulated/wall,/area/maintenance/station/eng_lower)
+"abD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abE" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest2"; name = "Engine Room Blast Doors"; pixel_x = 25; pixel_y = 0; req_access = null; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"abF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abJ" = (/obj/machinery/door/blast/regular{dir = 8; id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/simulated/floor,/area/tether/station/burial)
+"abK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abL" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"abN" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"abO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"abP" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abQ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abR" = (/obj/structure/table/steel,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abT" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"abU" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/obj/structure/cable/green,/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"abV" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"abW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
+"abX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"abY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"abZ" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/backup)
+"aca" = (/obj/structure/table/steel,/obj/item/weapon/deck/cards,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"acb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"acc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
+"ace" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"acf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acg" = (/turf/simulated/wall/r_wall,/area/engineering/engine_gas)
+"ach" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aci" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/random/soap,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"acj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"ack" = (/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"acl" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/gear_painter,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acm" = (/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aco" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium)
+"acp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"acr" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acs" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium)
+"act" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"acv" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"acw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"acy" = (/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"acz" = (/turf/simulated/wall/r_wall,/area/engineering/hallway)
+"acA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/contraband,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"acB" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"acC" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"acD" = (/obj/item/weapon/reagent_containers/food/snacks/donut/cherryjelly,/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"acE" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"acF" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"acG" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"acH" = (/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"acI" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"acJ" = (/turf/simulated/floor,/area/engineering/engine_room)
+"acK" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"acL" = (/turf/simulated/wall/r_wall,/area/engineering/engine_smes)
+"acM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/broken{icon_state = "pipe-b"; dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"acN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acO" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Engineering"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/maintenance/substation/engineering)
+"acP" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm1)
+"acQ" = (/turf/simulated/wall,/area/maintenance/station/spacecommandmaint)
+"acR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"acS" = (/turf/simulated/wall/r_wall,/area/engineering/workshop)
+"acT" = (/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"acU" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"acV" = (/turf/simulated/wall/r_wall,/area/bridge/secondary)
+"acW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"acX" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 9},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"acY" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"acZ" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"ada" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"adb" = (/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway)
+"adc" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"add" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"ade" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"adf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring)
+"adg" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"adh" = (/obj/structure/girder,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"adi" = (/obj/structure/table/steel,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"adj" = (/turf/simulated/wall,/area/maintenance/substation/spacecommand)
+"adk" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"adl" = (/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"adm" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"adn" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/camera/network/civilian{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ado" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"adp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"adq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"adr" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"ads" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"adt" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"adu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"adv" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"adw" = (/obj/structure/curtain/open/bed,/obj/structure/bed/padded,/obj/item/weapon/bedsheet/blue,/obj/random/plushie,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"adx" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ady" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"adz" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"adA" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
+"adB" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/machinery/computer/communications,/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"adC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"adD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"adE" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"adF" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"adG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"adH" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"adI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"adJ" = (/obj/machinery/computer/security,/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"adK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"adL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"adM" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"adN" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/corner/blue/full{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"adO" = (/turf/simulated/wall/r_wall,/area/gateway/prep_room)
+"adP" = (/turf/simulated/wall/r_wall,/area/gateway)
+"adQ" = (/obj/machinery/computer/power_monitor{dir = 4; throwpass = 1},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"adR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/atrium)
+"adS" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"adT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"adU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"adV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"adW" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"adX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"adY" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"adZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aea" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aeb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes)
+"aec" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aed" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aee" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aef" = (/obj/random/junk,/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aeg" = (/obj/random/trash,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aeh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aei" = (/turf/simulated/wall/r_wall,/area/mine/explored/upper_level)
+"aej" = (/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aek" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
+"ael" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/effect/decal/cleanable/dirt,/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/hallway/station/docks)
+"aem" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aen" = (/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aeo" = (/obj/machinery/computer/station_alert/all{icon_state = "computer"; dir = 4},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aep" = (/obj/machinery/light{dir = 8},/obj/machinery/computer/power_monitor{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aeq" = (/obj/machinery/computer/cryopod{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"aer" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aes" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/station_map{pixel_y = 32},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aet" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/security/engineering{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aeu" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aev" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aew" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring)
+"aex" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aey" = (/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"aez" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/engine_monitoring)
+"aeA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engine Monitoring Room"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring)
+"aeB" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway)
+"aeC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aeD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aeE" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aeF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
+"aeG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aeH" = (/obj/machinery/light{dir = 4},/obj/machinery/computer/crew{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aeI" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
+"aeJ" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Secondary Bridge"; departmentType = 5; name = "Secondary Bridge RC"; pixel_x = -32; pixel_y = 0},/obj/structure/table/reinforced,/obj/item/weapon/book/codex,/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aeK" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aeL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/tool,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aeM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aeN" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aeO" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator)
+"aeP" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aeQ" = (/obj/machinery/computer/rcon{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aeR" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks)
+"aeS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aeT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/folder/blue,/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aeU" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aeV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aeW" = (/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"aeX" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"aeY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"aeZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"afa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"afb" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"afc" = (/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afd" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aff" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"afg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge/secondary)
+"afi" = (/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"afj" = (/obj/machinery/light,/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"afk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"afl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"afn" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"afp" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage)
+"afq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"afr" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"afs" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"aft" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"afu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"afv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_command{name = "Secondary Control Room"},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"afw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge/secondary)
+"afy" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/elevator)
+"afz" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"afC" = (/turf/simulated/wall/r_wall,/area/hallway/station/atrium)
+"afD" = (/obj/structure/table/reinforced,/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"afE" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afF" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afG" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"afH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afI" = (/turf/simulated/wall,/area/tether/station/visitorhallway/office)
+"afJ" = (/obj/machinery/vending/snack,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afK" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/button/windowtint{id = "secondary_bridge"; pixel_x = 4; pixel_y = 26},/obj/machinery/button/remote/blast_door{id = "secondary_bridge_blast"; name = "Secondary Command Office Blastdoors"; pixel_x = -6; pixel_y = 28},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afL" = (/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"afM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"afN" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afO" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"afP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_monitoring)
+"afQ" = (/obj/machinery/light{dir = 1},/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"afR" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -2; pixel_y = -2},/obj/item/device/radio{pixel_x = 2; pixel_y = 2},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring)
+"afT" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/machinery/meter,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"afU" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"afV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"afW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"afZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aga" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"agb" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/hallway/station/atrium)
+"agc" = (/obj/structure/grille,/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief)
+"agd" = (/obj/structure/table/reinforced,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/wood,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"age" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"agg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agh" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agi" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/obj/structure/window/reinforced/polarized{dir = 8; id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief)
+"agj" = (/obj/machinery/status_display,/turf/simulated/wall,/area/tether/station/visitorhallway/office)
+"agk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/visitorhallway/office)
+"agl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"agm" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agn" = (/turf/simulated/floor/tiled,/area/bridge/secondary)
+"ago" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agr" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"ags" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agt" = (/obj/machinery/light{dir = 4},/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agu" = (/obj/structure/sign/deck1,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator)
+"agv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agx" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agy" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agz" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"agA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agB" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agC" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agF" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/obj/machinery/light/small{dir = 1},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_al_c_snsr"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"agG" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/papershredder,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agH" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled,/area/engineering/break_room)
+"agI" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"agJ" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room)
+"agK" = (/obj/machinery/computer/secure_data{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"agM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/machinery/computer/skills{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agN" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"agO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"agP" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"agQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agR" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"agT" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agU" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agW" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"agZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aha" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahb" = (/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahc" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ahd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"ahe" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"ahf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"ahg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"ahh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"ahi" = (/obj/machinery/ai_status_display,/turf/simulated/wall,/area/tether/station/visitorhallway/office)
+"ahj" = (/turf/simulated/wall/r_wall,/area/bridge/secondary/teleporter)
+"ahk" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"ahl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "secondary_bridge"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/secondary)
+"ahm" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "secondary_bridge"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/secondary)
+"ahn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "secondary_bridge"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/secondary)
+"aho" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/substation/engineering)
+"ahp" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"ahq" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"ahr" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"ahs" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"aht" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ahu" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"ahv" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ahw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahx" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway)
+"ahy" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"ahz" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/tiled/dark,/area/gateway)
+"ahA" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/dark,/area/gateway)
+"ahB" = (/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"ahC" = (/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"ahD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock)
+"ahE" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"ahF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ahK" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"ahL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"ahM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ahN" = (/turf/simulated/wall/r_wall,/area/bridge/secondary/meeting_room)
+"ahO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ahP" = (/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"ahQ" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"ahR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"ahS" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/dark,/area/gateway)
+"ahT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"ahU" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"ahV" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
+"ahW" = (/obj/structure/lattice,/turf/space,/area/space)
+"ahX" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway)
+"ahY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/structure/symbol/lo{pixel_x = -32},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"ahZ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aia" = (/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aib" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aic" = (/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"aid" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aie" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"aif" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"aig" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"aih" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aii" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway)
+"aij" = (/turf/simulated/wall/r_wall,/area/engineering/break_room)
+"aik" = (/turf/simulated/wall/r_wall,/area/maintenance/station/eng_lower)
+"ail" = (/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aim" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ain" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"aio" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aip" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aiq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"air" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ais" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ait" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"aiu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"aiv" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/yellow,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"aiw" = (/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"aix" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aiy" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; pixel_x = -24; tag_airpump = "engine_airlock_pump"; tag_chamber_sensor = "eng_al_c_snsr"; tag_exterior_door = "engine_airlock_exterior"; tag_exterior_sensor = "eng_al_ext_snsr"; tag_interior_door = "engine_airlock_interior"; tag_interior_sensor = "eng_al_int_snsr"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"aiz" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green,/turf/simulated/floor,/area/gateway)
+"aiA" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"aiB" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aiC" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"aiD" = (/obj/machinery/airlock_sensor/airlock_exterior{id_tag = "eng_al_ext_snsr"; layer = 3.3; master_tag = "engine_room_airlock"; pixel_x = -22; pixel_y = 0; req_access = list(10)},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"aiE" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aiF" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"aiG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aiH" = (/obj/machinery/keycard_auth{pixel_x = -24},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aiI" = (/obj/structure/closet,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aiJ" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway)
+"aiK" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway)
+"aiL" = (/obj/machinery/door/blast/shutters{dir = 2; id = "GateShut"; layer = 3.3; name = "Gateway Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway)
+"aiM" = (/turf/simulated/wall/r_wall,/area/engineering/engine_airlock)
+"aiN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"aiO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aiP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aiQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"aiR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aiS" = (/turf/simulated/floor/tiled/dark,/area/gateway)
+"aiT" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/storage)
+"aiU" = (/obj/machinery/button/remote/blast_door{id = "GateShut"; name = "Gateway Shutter"; pixel_y = 24; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway)
+"aiV" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"aiW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aiX" = (/obj/structure/closet,/obj/random/junk,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aiY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/gateway)
+"aiZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"aja" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway)
+"ajb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/gateway)
+"ajc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/command{name = "Gateway Electrical Shaft"; req_access = list(62); req_one_access = list()},/turf/simulated/floor,/area/gateway)
+"ajd" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"aje" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajf" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/dark,/area/gateway)
+"ajg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ajh" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"aji" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajj" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ajl" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajm" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajo" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ajp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room)
+"ajq" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ajs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ajt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock)
+"aju" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ajv" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajw" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajx" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"ajz" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajA" = (/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ajC" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ajD" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage)
+"ajE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajF" = (/turf/simulated/floor/carpet,/area/engineering/break_room)
+"ajG" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"ajH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/storage)
+"ajJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ajL" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajM" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajN" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajO" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajR" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajS" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajT" = (/turf/simulated/floor/bluegrid,/area/gateway/prep_room)
+"ajU" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/gateway/prep_room)
+"ajV" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajW" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"ajX" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajY" = (/obj/machinery/suit_cycler/engineering{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ajZ" = (/obj/machinery/suit_cycler/medical{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"aka" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"akb" = (/obj/machinery/suit_cycler/mining{req_access = null},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"akc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Gateway Access Shutters"},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akd" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"ake" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"akf" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_y = 22; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akg" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"akh" = (/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway)
+"aki" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akj" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"akk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/storage)
+"akl" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"akm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor,/area/engineering/storage)
+"akn" = (/obj/effect/floor_decal/rust,/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"ako" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"akp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/engineering/storage)
+"akq" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"akr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"aks" = (/turf/simulated/floor,/area/engineering/engine_gas)
+"akt" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"aku" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{dir = 8},/turf/simulated/open,/area/maintenance/station/eng_lower)
+"akw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway)
+"aky" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akA" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akB" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akC" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akE" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/gateway)
+"akG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/gateway)
+"akH" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akJ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akL" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway)
+"akM" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"akN" = (/obj/machinery/door/airlock/multi_tile/metal{name = "Gateway Prep Room"},/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"akP" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"akR" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"akS" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage)
+"akT" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"akU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = 24; pixel_y = -23; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"akV" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = -24; pixel_y = 24; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"akW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"akX" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"akY" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"akZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"ala" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"alb" = (/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"alc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage)
+"ald" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ale" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway)
+"alf" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"alg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Exploration Public Access"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"alh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ali" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"alj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"alk" = (/obj/machinery/floodlight,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"all" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_x = 25; pixel_y = 25; req_access = list(62)},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"alm" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aln" = (/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"alo" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/holodeck_control)
+"alp" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"alq" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"alr" = (/obj/machinery/computer/station_alert{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
+"als" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/recharger,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/break_room)
+"alt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_monitoring)
+"alu" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"alv" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring)
+"alw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup)
+"alx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/atmos/backup)
+"aly" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"alz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup)
+"alA" = (/turf/simulated/wall,/area/holodeck_control)
+"alB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage)
+"alC" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"alD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage)
+"alE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"alF" = (/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
+"alG" = (/turf/simulated/floor,/area/engineering/shaft)
+"alH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"alI" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"alJ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room)
+"alK" = (/obj/structure/ladder/up,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/shaft)
+"alL" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"alM" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"alN" = (/turf/simulated/wall/r_wall,/area/maintenance/abandonedlibrary)
+"alO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/landmark/start,/turf/simulated/floor/tiled,/area/storage/tools)
+"alP" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools)
+"alQ" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian)
+"alR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
+"alS" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools)
+"alT" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency4)
+"alU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"alV" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"alW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/steeldecal/steel_decals_central6{icon_state = "steel_decals_central6"; dir = 8},/obj/machinery/alarm{pixel_y = 22},/obj/vehicle/train/engine,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
+"alX" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"alY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"alZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ama" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "cafe2"; name = "Cafe Shutters"; pixel_x = -10; pixel_y = 36; req_access = list(); req_one_access = list(25)},/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"amc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"amd" = (/obj/machinery/light{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"ame" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"amf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"amg" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck)
+"amh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/supply{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"ami" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"amk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aml" = (/obj/machinery/light,/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
+"amm" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"amo" = (/obj/machinery/door/window/northright{name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"amq" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"amr" = (/obj/structure/railing{dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"ams" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/engineering/foyer)
+"amt" = (/obj/machinery/door/window{dir = 1; icon_state = "left"; name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amu" = (/obj/structure/railing{dir = 1},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"amv" = (/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"amw" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"amx" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"amy" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/device/flashlight/lamp/green,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amz" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tool,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"amA" = (/obj/structure/disposalpipe/up{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"amB" = (/obj/machinery/atmospherics/valve/digital/open,/obj/structure/railing{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"amC" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amD" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amE" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
+"amF" = (/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amG" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_coffee/full,/turf/simulated/floor/wood,/area/hallway/station/atrium)
+"amH" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium)
+"amI" = (/obj/structure/flora/ausbushes/brflowers,/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"amJ" = (/obj/machinery/light/flamp/noshade,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"amK" = (/turf/space,/area/shuttle/specialops/tether)
+"amL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"amM" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control)
+"amN" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control)
+"amO" = (/obj/structure/dispenser,/turf/simulated/floor,/area/engineering/storage)
+"amP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"amQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"amR" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"amS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"amT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"amU" = (/turf/simulated/wall,/area/maintenance/abandonedlibrary)
+"amV" = (/obj/structure/sign/department/biblio,/turf/simulated/wall,/area/hallway/station/atrium)
+"amW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/hallway/station/atrium)
+"amX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/hallway/station/atrium)
+"amY" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"amZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"ana" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/engineering_guide,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anb" = (/obj/machinery/light{dir = 1},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/book/manual/engineering_hacking,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anc" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/shaft)
+"and" = (/obj/machinery/computer/atmoscontrol{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"ane" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/shaft)
+"anf" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ang" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"anh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"ani" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anj" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"ank" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anl" = (/obj/structure/sign/department/engine,/turf/simulated/wall/r_wall,/area/engineering/hallway)
+"anm" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"ann" = (/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"ano" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anp" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ans" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"ant" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
+"anw" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anx" = (/obj/random/junk,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
+"any" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anA" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anD" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"anE" = (/obj/structure/symbol/lo{pixel_y = 32},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"anF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor,/area/engineering/hallway)
+"anG" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anH" = (/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room)
+"anI" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"anL" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"anM" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/hydroponics_pod_people,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anN" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 12},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anP" = (/obj/effect/landmark/engine_loader_pickable{clean_turfs = list(list(20,93,30,118),list(31,94,35,96),list(29,97,43,118),list(44,113,46,118))},/turf/space,/area/space)
+"anQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"anR" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = -32},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = -32; specialfunctions = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"anS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anT" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/book/codex/lore/news,/obj/random/contraband,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"anU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"anV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anW" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anX" = (/obj/structure/bookcase,/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"anY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"anZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aoa" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"aob" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoc" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/rust_engine,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"aod" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"aoe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
+"aof" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aog" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
+"aoh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engineering/atmos/backup)
+"aoi" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
+"aoj" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aok" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aol" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aom" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"aon" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aoo" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor,/area/engineering/storage)
+"aop" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aoq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aor" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aos" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"aot" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Electrical Shaft"; req_one_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/hallway)
+"aou" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aov" = (/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"aow" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway)
+"aox" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/hallway)
+"aoz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
+"aoA" = (/obj/structure/table/woodentable,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/obj/random/medical,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoB" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aoC" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoD" = (/obj/machinery/newscaster{pixel_x = 30},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoE" = (/obj/random/junk,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoF" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/engineering/break_room)
+"aoG" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aoH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aoI" = (/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aoJ" = (/turf/simulated/wall/r_wall,/area/engineering/foyer)
+"aoK" = (/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoL" = (/obj/random/trash,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"aoM" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoN" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoO" = (/turf/simulated/wall/r_wall,/area/storage/emergency_storage/emergency4)
+"aoP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"aoR" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized/full{id = "library_study"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoS" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoT" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/book/codex,/obj/random/maintenance,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"aoU" = (/obj/structure/table,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary)
+"aoV" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monofloor{dir = 1},/area/holodeck_control)
+"aoW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoX" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aoY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"aoZ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apc" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"ape" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/break_room)
+"aph" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"api" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"apj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apm" = (/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"apn" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"app" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/meter,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"apq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"apr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aps" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Substation"; req_access = list(24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup)
+"apt" = (/obj/item/stack/tile/wood{amount = 10},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"apv" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apw" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"apx" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apC" = (/obj/machinery/button/windowtint{id = "library_study"; pixel_x = 26; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apD" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/table/woodentable,/obj/random/junk,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"apF" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"apG" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apH" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"apI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apK" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apL" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apM" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"apN" = (/obj/machinery/computer/security/engineering,/turf/simulated/floor/wood,/area/engineering/break_room)
+"apO" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/wood,/area/engineering/break_room)
+"apP" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/wood,/area/engineering/break_room)
+"apQ" = (/turf/simulated/floor/wood,/area/engineering/break_room)
+"apR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary)
+"apS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary)
+"apT" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/engineering/break_room)
+"apU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"apV" = (/obj/structure/table/woodentable,/obj/random/maintenance,/obj/random/mouseremains,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"apW" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"apX" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
+"apY" = (/obj/machinery/light_construct/small,/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"apZ" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibrary)
+"aqa" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"aqc" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/obj/machinery/light/small,/obj/random/drinkbottle,/obj/random/coin,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary)
+"aqd" = (/turf/simulated/wall,/area/maintenance/abandonedlibraryconference)
+"aqe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos/backup)
+"aqf" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqg" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"aqh" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/backup)
+"aqj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqk" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/camera/network/civilian{dir = 9},/turf/simulated/floor/tiled,/area/holodeck_control)
+"aql" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqm" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqn" = (/obj/machinery/door/firedoor/glass,/obj/random/obstruction,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"aqo" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"aqq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqr" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"aqs" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aqt" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aqu" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqv" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/engineering/break_room)
+"aqw" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibraryconference)
+"aqx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"aqy" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"aqz" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"aqA" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
+"aqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"aqD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqE" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqG" = (/obj/structure/bed/chair/comfy/beige,/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"aqH" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
+"aqI" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqJ" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqK" = (/obj/machinery/pipedispenser,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqL" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aqM" = (/turf/simulated/wall,/area/engineering/workshop)
+"aqN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/workshop)
+"aqO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqP" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"aqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqS" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aqU" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"aqV" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"aqW" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"aqX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"aqY" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"aqZ" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"ara" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
+"arb" = (/obj/machinery/atmospherics/valve/digital/open,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"arc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"ard" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/watertank,/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"are" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"arf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"arg" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arh" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"ari" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arj" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
+"ark" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"arl" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"arm" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aro" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/stack/material/wood{amount = 10},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"arp" = (/obj/structure/table/woodentable,/obj/item/weapon/packageWrap,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/contraband,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"arq" = (/turf/simulated/wall/r_wall,/area/engineering/shaft)
+"arr" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"ars" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"art" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/tool,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aru" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"arv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
+"arw" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"arx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"ary" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"arz" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"arA" = (/obj/machinery/atmospherics/valve/open,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"arB" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"arC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/down{dir = 8},/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/eng_lower)
+"arD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
+"arF" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop)
+"arG" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/maintenance,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"arH" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"arI" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/engineering/break_room)
+"arJ" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
+"arL" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arM" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/engineering)
+"arN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/carpet,/area/engineering/break_room)
+"arO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"arP" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"arQ" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"arR" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"arS" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
+"arT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"arU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/item/weapon/flame/lighter/zippo,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arV" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
+"arW" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"arX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"arY" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
+"arZ" = (/obj/structure/disposalpipe/segment,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"asa" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"asb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/engineering/break_room)
+"asc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/railing{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"asd" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference)
+"ase" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference)
+"asf" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"asg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room)
+"ash" = (/turf/simulated/wall/r_wall,/area/holodeck_control)
+"asi" = (/obj/machinery/door/airlock/glass{name = "Holodeck Control"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/holodeck_control)
+"asj" = (/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"ask" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/table/woodentable,/obj/item/weapon/book/manual/supermatter_engine{pixel_x = -3},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"asl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"asm" = (/obj/machinery/mech_recharger,/turf/simulated/floor,/area/engineering/workshop)
+"asn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"aso" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/telecomms/relay/preset/tether/station_mid,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
+"asp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"asq" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"asr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room)
+"ass" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
+"ast" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference)
+"asu" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
+"asv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/railing,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower)
+"asw" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"asx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/engineering/break_room)
+"asy" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"asz" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"asA" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/device/closet_painter,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"asB" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/security_space_law,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"asC" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"asD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"asE" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"asF" = (/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"asG" = (/turf/simulated/wall/r_wall,/area/maintenance/abandonedlibraryconference)
+"asH" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"asI" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/cryo)
+"asJ" = (/obj/structure/cryofeed{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"asK" = (/obj/machinery/cryopod{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"asL" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"asM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"asN" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"asO" = (/obj/structure/cryofeed,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"asP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/holodeck_control)
+"asQ" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor/tiled,/area/holodeck_control)
+"asR" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/blue/bordercorner,/turf/simulated/floor/tiled,/area/bridge/secondary)
+"asS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"asT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Gateway Access Shutters"},/turf/simulated/floor/tiled/dark,/area/gateway)
+"asU" = (/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"asV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/turf/simulated/floor,/area/bridge/secondary/meeting_room)
+"asW" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"asX" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/red,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"asY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"asZ" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/weapon/folder/red,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"ata" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"atb" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/engineering)
+"atc" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/cups,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"atd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/engineering/break_room)
+"ate" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"atf" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"atg" = (/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"ath" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"ati" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/paicard,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"atj" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"atk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"atl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atm" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"atn" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"ato" = (/obj/structure/railing{dir = 8},/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"atp" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"atq" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"atr" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office)
+"ats" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"att" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"atu" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"atv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atx" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"aty" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"atz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/bridge/secondary/meeting_room)
+"atA" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"atB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"atC" = (/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atF" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"atG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room)
+"atH" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/engineering/foyer)
+"atI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"atJ" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"atK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"atL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"atN" = (/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"atO" = (/turf/simulated/wall/r_wall,/area/engineering/engine_eva)
+"atP" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"atQ" = (/obj/structure/window/reinforced,/obj/structure/frame,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"atR" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"atS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"atT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"atU" = (/obj/structure/disposalpipe/sortjunction{name = "Visitor Office"; sortType = "Visitor Office"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"atV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"atW" = (/turf/simulated/floor/tiled,/area/engineering/hallway)
+"atX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"atY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
+"atZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/bookcase/manuals/engineering,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/evaguide,/turf/simulated/floor/tiled,/area/engineering/break_room)
+"aua" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"aub" = (/obj/structure/bed/chair/comfy/blue{icon_state = "comfychair_preview"; dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"auc" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room)
+"aud" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aue" = (/turf/simulated/wall,/area/engineering/atmos/backup)
+"auf" = (/obj/structure/closet/firecloset/full/double,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aug" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auh" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aui" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auk" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aul" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"aum" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aun" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"auo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"aup" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aur" = (/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"aus" = (/turf/simulated/wall,/area/crew_quarters/sleep/cryo)
+"aut" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auu" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"auw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aux" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"auy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"auz" = (/turf/simulated/wall,/area/engineering/break_room)
+"auA" = (/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"auB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"auC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"auD" = (/turf/simulated/wall/r_wall,/area/maintenance/station/spacecommandmaint)
+"auE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auF" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"auG" = (/obj/structure/table/standard,/obj/item/weapon/hand_tele,/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"auH" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"auI" = (/obj/machinery/computer/teleporter{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"auJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"auK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"auL" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Civilian"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"auM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"auN" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"auO" = (/obj/machinery/vending/fitness,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"auP" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"auQ" = (/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Subgrid"; name_tag = "Civilian Subgrid"},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"auR" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"auS" = (/obj/machinery/vending/tool,/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/tools)
+"auT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"auU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"auV" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"auW" = (/obj/machinery/atmospherics/omni/mixer{tag_east = 1; tag_east_con = 0.21; tag_south = 1; tag_south_con = 0.79; tag_west = 2},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"auX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/dark,/area/bridge/secondary)
+"auY" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 1; tag_south = 4; tag_west = 3},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"auZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 1},/obj/effect/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"ava" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 4},/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"avb" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/spacecommand)
+"avc" = (/obj/machinery/cryopod/robot,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"avd" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"ave" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"avf" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space)
+"avg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"avh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"avi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"avj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"avk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"avl" = (/obj/machinery/teleport/station{dir = 2},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"avm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"avn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light_switch{dir = 1; pixel_x = 0; pixel_y = -26},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"avo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"avp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/spacecommand)
+"avq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"avr" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"avs" = (/obj/structure/table/reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"avt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"avu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"avv" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"avw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"avx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"avy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"avz" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{name = "Engineering Break Room"; sortType = "Engineering Break Room"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"avA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/structure/closet,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/random/coin,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"avB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/engineering/break_room)
+"avC" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"avD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room)
+"avE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"avF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"avG" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avH" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
+"avJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avL" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room)
+"avM" = (/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Visitor Office"; sortType = "Visitor Office"},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avN" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"avQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"avR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/bridge/secondary/hallway)
+"avS" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset/full/double,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
+"avT" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/flora/pottedplant{icon_state = "plant-21"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avU" = (/turf/simulated/wall,/area/tether/station/visitorhallway)
+"avV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"avW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"avX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"avY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"avZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"awa" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"awb" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"awc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awd" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"awf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awg" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Secondary Command Office"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"awh" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"awi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awk" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"awl" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"awm" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"awn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"awo" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awp" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Stairwell"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"awq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awr" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"aws" = (/turf/simulated/wall,/area/tether/station/stairs_one)
+"awt" = (/turf/simulated/wall,/area/storage/tools)
+"awu" = (/turf/simulated/wall,/area/hallway/station/docks)
+"awv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm1"; name = "Room 1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm1)
+"aww" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm2)
+"awx" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"awy" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"awz" = (/obj/structure/bed/chair/comfy/blue{icon_state = "comfychair_preview"; dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"awA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"awB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop)
+"awC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"awD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"awE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/tether/station/visitorhallway)
+"awF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"awG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm2"; name = "Room 2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm2)
+"awH" = (/obj/structure/flora/pottedplant,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"awI" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"awJ" = (/obj/machinery/button/remote/airlock{id = "spacedorm1"; name = "Room 1 Lock"; pixel_x = -28; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"awK" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"awL" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"awM" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
+"awN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/bridge/secondary/teleporter)
+"awO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"awP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"awQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"awR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/engineering/break_room)
+"awS" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"awT" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/glasses/square,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/break_room)
+"awU" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled,/area/storage/tools)
+"awV" = (/obj/machinery/teleport/hub{dir = 2},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"awW" = (/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"awX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"awY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"awZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"axa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"axb" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/hallway/station/docks)
+"axc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/bridge/secondary/meeting_room)
+"axd" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"axe" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room)
+"axf" = (/obj/machinery/button/remote/airlock{id = "spacedorm2"; name = "Room 2 Lock"; pixel_x = 28; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"axg" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"axh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 20; pixel_y = 30},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"axi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"axj" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"axk" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/device/gps/command,/obj/item/device/gps/command,/obj/item/device/gps/command,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"axl" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"axm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/turf/simulated/floor,/area/bridge/secondary/teleporter)
+"axn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"axo" = (/obj/structure/table/woodentable,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"axp" = (/obj/structure/table/woodentable,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"axq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"axr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"axs" = (/turf/simulated/wall/r_wall,/area/bridge/secondary/hallway)
+"axt" = (/obj/random/trash_pile,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"axu" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"axv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"axw" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"axx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"axy" = (/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"axz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/storage/tools)
+"axA" = (/obj/machinery/atmospherics/pipe/tank/oxygen{icon_state = "o2_map"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"axB" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"axC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"axD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/hallway/station/docks)
+"axE" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/hallway/station/docks)
+"axF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"axG" = (/obj/machinery/atmospherics/pipe/tank{dir = 1; icon_state = "air_map"; name = "Waste Tank"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"axH" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{icon_state = "n2_map"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"axI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"axJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"axK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Space Meeting Room"; sortType = "Space Meeting Room"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"axL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"axM" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"axN" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"axO" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"axP" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"axQ" = (/obj/structure/sign/deck1,/turf/simulated/wall,/area/tether/station/stairs_one)
+"axR" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"axS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"axT" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1)
+"axU" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"axV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"axW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
+"axX" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"axY" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"axZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/hallway/station/docks)
+"aya" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"ayc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"aye" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2)
+"ayf" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm3)
+"ayg" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"ayh" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/iandouble,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"ayi" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/machinery/light_switch{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/break_room)
+"ayj" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"ayk" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"ayl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"aym" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"ayo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayp" = (/turf/space,/area/shuttle/excursion/tether_dockarm)
+"ayq" = (/obj/machinery/computer/card{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/blue/border{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"ayr" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"ays" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"ayt" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm4)
+"ayu" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayv" = (/obj/machinery/keycard_auth{pixel_x = 24},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"ayx" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"ayy" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"ayz" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"ayA" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools)
+"ayC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks)
+"ayD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"ayE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayI" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"ayJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"ayK" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayN" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"ayO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayP" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "lightsout"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayR" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"ayS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayW" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayX" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"ayY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/tether/station/visitorhallway)
+"ayZ" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"aza" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"azb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"azc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"azd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"aze" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"azf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"azg" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"azh" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/newscaster{pixel_x = -30},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
+"azi" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled,/area/storage/tools)
+"azj" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"azk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Washroom"; req_one_access = list(10)},/turf/simulated/floor/tiled/white,/area/engineering/break_room)
+"azl" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/hallway/station/docks)
+"azm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azn" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azo" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azs" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azt" = (/obj/structure/flora/pottedplant{icon_state = "plant-21"},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/civilian{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azu" = (/turf/simulated/wall/r_wall,/area/tether/station/visitorhallway)
+"azv" = (/turf/simulated/wall,/area/tether/station/visitorhallway/lounge)
+"azw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azx" = (/turf/simulated/wall,/area/tether/station/visitorhallway/laundry)
+"azy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azz" = (/turf/simulated/wall/r_wall,/area/tether/station/visitorhallway/laundry)
+"azA" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"azB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"azC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 6; pixel_y = 32},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azD" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"azE" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azF" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azG" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azH" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium)
+"azJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"azK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azL" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = -6; pixel_y = 32},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azM" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"azN" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"azO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
+"azP" = (/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azQ" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"azR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"azS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azT" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azV" = (/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azW" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"azX" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"azY" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"azZ" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAb" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway)
+"aAd" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAf" = (/obj/structure/closet/wardrobe/suit,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAg" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAh" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAj" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAk" = (/turf/simulated/wall,/area/crew_quarters/toilet)
+"aAl" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aAm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aAn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aAo" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aAp" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aAq" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/hallway/station/docks)
+"aAr" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aAs" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter)
+"aAt" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter)
+"aAu" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"aAv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"aAw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/computer/id_restorer{dir = 1; icon_state = "restorer"; pixel_y = -32},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAE" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"aAF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAH" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aAK" = (/obj/structure/closet/wardrobe/black,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aAM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAO" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"aAP" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"aAQ" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "exterior access button"; pixel_x = 0; pixel_y = -25; req_one_access = list(11,24)},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/airless,/area/space)
+"aAR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aAS" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southleft{name = "Jetpack Storage"; req_access = newlist(); req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aAT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aAU" = (/obj/structure/closet/wardrobe/xenos,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAV" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aAW" = (/turf/simulated/wall,/area/crew_quarters/sleep/engi_wash)
+"aAX" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aAY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/visitorhallway/lounge)
+"aAZ" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aBa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aBb" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aBc" = (/obj/structure/table/bench/standard,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aBd" = (/obj/structure/bed/chair,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aBe" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aBf" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aBg" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aBh" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aBi" = (/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aBj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/visitorhallway/laundry)
+"aBk" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"aBl" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aBm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aBn" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"aBo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"aBp" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aBq" = (/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aBr" = (/obj/structure/table/woodentable,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"aBs" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"aBt" = (/obj/machinery/button/remote/airlock{id = "spacedorm3"; name = "Room 3 Lock"; pixel_x = -28; pixel_y = -26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"aBu" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3)
+"aBv" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"aBw" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aBx" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aBy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
+"aBz" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aBA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aBB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aBC" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aBD" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aBE" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aBF" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/mre,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aBG" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/medical,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aBH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian)
+"aBI" = (/obj/machinery/button/remote/airlock{id = "spacedorm4"; name = "Room 4 Lock"; pixel_x = 28; pixel_y = -26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"aBJ" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4)
+"aBK" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aBL" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint)
+"aBM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm3"; name = "Room 3"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm3)
+"aBN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm4"; name = "Room 4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm4)
+"aBO" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/spacedorm4)
+"aBP" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"aBQ" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"aBR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aBS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway)
+"aBT" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aBU" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"aBV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"aBW" = (/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room)
+"aBX" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aBY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary)
+"aBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aCa" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/carpet,/area/engineering/foyer)
+"aCb" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aCc" = (/obj/structure/table/reinforced,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 10; pixel_y = 36},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aCd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/techfloor{dir = 9},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
+"aCe" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCf" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aCg" = (/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aCh" = (/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/break_room)
+"aCi" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aCj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aCk" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office)
+"aCl" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge)
+"aCm" = (/obj/machinery/washing_machine,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry)
+"aCn" = (/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial)
+"aCo" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room)
+"aCp" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"aCq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCv" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aCw" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCx" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aCy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control)
+"aCz" = (/obj/structure/bed/chair,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"aCA" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aCB" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_outer"; locked = 1; name = "Engineering Starboard External Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor,/area/engineering/engineering_airlock)
+"aCC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"aCD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"aCE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aCF" = (/turf/simulated/wall,/area/tether/station/dock_one)
+"aCG" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one)
+"aCH" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aCI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one)
+"aCJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/station/docks)
+"aCK" = (/turf/simulated/wall,/area/tether/station/dock_two)
+"aCL" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two)
+"aCM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
+"aCN" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two)
+"aCO" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aCP" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aCQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aCR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aCS" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/storage/tools)
+"aCT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
+"aCU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"aCV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aDh" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"aDj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aDn" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aDs" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aDD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aDE" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aDF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aDG" = (/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aDH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"aDJ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aDK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aDL" = (/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aDM" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Subgrid"; name_tag = "Civilian Subgrid"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aDP" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/random/junk,/obj/random/tool,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
+"aDZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aEa" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1379; id_tag = "eng_starboard_pump"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"aEb" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aEf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aEl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aEm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aEx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aEz" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway)
+"aEA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aEE" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aEM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aEN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aEO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aER" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash)
+"aET" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash)
+"aEW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aEX" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Civilian"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aEZ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
+"aFc" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
+"aFe" = (/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4)
+"aFf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4)
+"aFh" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aFq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aFr" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aFt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aFI" = (/obj/structure/table/standard,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/holodeck_control)
+"aFJ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "eng_starboard_pump"},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_starboard_sensor"; pixel_x = 24; pixel_y = 10},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1379; id_tag = "eng_starboard_airlock"; pixel_x = 24; pixel_y = 0; req_access = newlist(); req_one_access = list(11,24); tag_airpump = "eng_starboard_pump"; tag_chamber_sensor = "eng_starboard_sensor"; tag_exterior_door = "eng_starboard_outer"; tag_interior_door = "eng_starboard_inner"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"aFL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aFO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aFT" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"aFU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"aFV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aFW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aFX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aFY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"aFZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"aGa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aGb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aGs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aGx" = (/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aGy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aGz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aGB" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_airlock)
+"aGF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aGI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aGP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/civilian)
+"aGZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"aHa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aHb" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aHc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"aHd" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aHt" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aHv" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aHw" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aHz" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aHQ" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"aHT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"aHY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_eva)
+"aIb" = (/turf/space,/area/shuttle/antag_space/docks)
+"aIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aIf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
+"aIi" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aIl" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aIn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aIo" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aIp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aIs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aIy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aIA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"aIM" = (/obj/effect/floor_decal/sign/dock/one,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aIO" = (/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aIR" = (/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"aIT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aIU" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aIY" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"aJh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_airlock)
+"aJi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"aJj" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "interior access button"; pixel_x = 24; pixel_y = 25; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
+"aJk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
+"aJl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aJm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aJn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/atmospherics/binary/passive_gate/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"aJo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"aJr" = (/turf/space,/area/shuttle/trade/station)
+"aJs" = (/turf/simulated/wall/r_wall,/area/engineering/storage)
+"aJw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aJx" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aJy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aJV" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage)
+"aKb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aKl" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/soap,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aKr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aKt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aKz" = (/obj/machinery/atmospherics/pipe/zpipe/up,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{icon_state = "16-0"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower)
+"aKN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aKQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aKU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Unisex Showers"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aLc" = (/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = null; name = "Holodeck"; req_access = list()},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monofloor,/area/holodeck_control)
+"aLh" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"aLi" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
+"aLj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aLl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aLp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
+"aLt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"aLy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock)
+"aLK" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aLX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aLY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMa" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "CE Office"; sortType = "CE Office"},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aMl" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aMp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aMr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aMt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/railing,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aMx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aMB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"aML" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aMZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aNa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aNb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"aNd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
+"aNe" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock)
+"aNo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "CEdoor"; name = "Chief Engineer"; req_access = list(56)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/chief)
+"aNr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring)
+"aNF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
+"aNH" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
+"aOj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aOL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aOO" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/holodeck_control)
+"aOS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aOW" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = 10; req_one_access = list(10,24)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = 10; req_access = list(10)},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aOY" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aPa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aPj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aPq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/engineering/foyer)
+"aQa" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aQh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aQk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"aQl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aQn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aQs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/engineering{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aQv" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"aQw" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aQD" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aQJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aQQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aQW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aQX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/engineering/foyer)
+"aQZ" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aRb" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief)
+"aRc" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/carpet,/area/engineering/foyer)
+"aRd" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"aRr" = (/obj/machinery/atmospherics/valve/open,/obj/structure/railing{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aRw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"aRy" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"aRA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop)
+"aRV" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aRX" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"aRZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aSa" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/computer/station_alert/all{icon_state = "computer"; dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aSe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/obj/machinery/button/windowtint{id = "ce_office"; layer = 3.3; pixel_x = 26; pixel_y = 29},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = 26; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 38; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/airlock{id = "CEdoor"; name = "CE Office Door Control"; pixel_x = 26},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"aSo" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"aSu" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aSz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring)
+"aSB" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aSC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_eva)
+"aSD" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aSF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aSL" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/vending/cola,/turf/simulated/floor/carpet,/area/engineering/foyer)
+"aSO" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aTi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aTm" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"aTA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aTE" = (/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aTJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aTK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aTL" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aTQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aTR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"aTW" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/reagent_containers/food/snacks/snakesnack,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
+"aTX" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aUk" = (/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aUl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aUm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aUn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aUo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"aUE" = (/obj/structure/railing,/obj/structure/disposalpipe/segment,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aUF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/medical/lite,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aUI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aUU" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash)
+"aUX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aVx" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/holodeck_control)
+"aVz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aVG" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
+"aVH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aVK" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aVN" = (/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aVP" = (/obj/machinery/computer/power_monitor{icon_state = "computer"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aVW" = (/obj/machinery/computer/rcon{icon_state = "computer"; dir = 1},/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aWd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aWj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"aWn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aWJ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aXl" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control)
+"aXw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/holodeck_control)
+"aXC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/hatch{name = "Server Room"; req_access = list(59); req_one_access = list(19)},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
+"aXR" = (/obj/structure/window/basic{dir = 1},/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_x = 0; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/chief)
+"aXX" = (/obj/structure/table/reinforced,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring)
+"aXY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
+"aXZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/foyer)
+"aYa" = (/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer)
+"aYb" = (/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 = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer)
+"aYc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
+"aYf" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down{dir = 1},/obj/structure/cable{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/disposalpipe/down{dir = 8},/turf/simulated/open,/area/maintenance/station/eng_lower)
+"aYg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/foyer)
+"aYt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aYF" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aYH" = (/obj/structure/table/reinforced,/obj/item/weapon/rcd,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aYJ" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/device/radio{pixel_x = -4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aYW" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/holodeck_control)
+"aZg" = (/obj/structure/table/reinforced,/obj/item/device/megaphone,/obj/machinery/keycard_auth{pixel_w = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"aZq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aZr" = (/obj/machinery/computer/atmos_alert,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aZP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"aZU" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"aZW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bay" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"baA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/reinforced,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"baI" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"baQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"baT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bbs" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bbx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bbE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bbT" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bch" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bck" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"bcl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"bcn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"bcp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"bcr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"bcw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"bcx" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"bcK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bcO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bdi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bds" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway)
+"bdu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdW" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bdZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bee" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"beJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"beL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"beM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"beN" = (/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"beS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"beY" = (/obj/machinery/door/airlock/multi_tile/metal{dir = 2; icon_state = "door_closed"; name = "Cryogenic Storage"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo)
+"bfk" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bfo" = (/obj/structure/window/reinforced,/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/foyer)
+"bft" = (/obj/item/modular_computer/console/preset/command{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"bfv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"bfF" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bfG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"bfJ" = (/obj/structure/sign/directions/command{dir = 4},/obj/structure/sign/directions/elevator{dir = 4; pixel_y = 8},/turf/simulated/wall,/area/tether/station/stairs_one)
+"bfQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bfT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief)
+"bgf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bgr" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bgC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bgD" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bgE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bgF" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bgG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"bgH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"bgJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 32; pixel_z = -8},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"bgO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
+"bha" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bhc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bhg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/hallway/station/docks)
+"bhj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"bhH" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bhJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bhK" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bhL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bid" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"bir" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/crew_quarters/sleep/cryo)
+"biC" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"biK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools)
+"bkm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled/steel_grid,/area/tether/station/stairs_one)
+"bkp" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/tools)
+"bkq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks)
+"bks" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools)
+"bkx" = (/obj/structure/table/reinforced,/obj/item/stack/material/plasteel{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"bky" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bmv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bmA" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bnl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/hallway/station/docks)
+"bno" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/hallway/station/docks)
+"bnw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"bnI" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief)
+"boc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bou" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_one)
+"bpd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bpf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bpi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bpm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bpv" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/tools)
+"bpz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor,/area/hallway/station/docks)
+"bqb" = (/obj/structure/cable/green{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{name = "Unisex Restrooms"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/toilet)
+"bqf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bqj" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/hallway/station/docks)
+"brV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"brX" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"bsv" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bto" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"btr" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"bts" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"btt" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"btu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bty" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"btC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"btF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"btM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"btO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"btS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bvs" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"bvt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bvu" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bvE" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bwb" = (/turf/space,/area/shuttle/tether/station)
+"bwV" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one)
+"bxe" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two)
+"byy" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"byA" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet)
+"byD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"byE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"byG" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"byN" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"byP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bzn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"bzq" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bzR" = (/obj/structure/flora/pottedplant,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bBo" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bCg" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bDr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bEW" = (/obj/structure/flora/pottedplant,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bFf" = (/obj/structure/flora/pottedplant,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"bFE" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"bFH" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bGo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"bGy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bHt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a2_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bHu" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bHw" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a2_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a2_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a2_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a2_dock_pump"; tag_chamber_sensor = "d1a2_dock_sensor"; tag_exterior_door = "d1a2_dock_outer"; tag_interior_door = "d1a2_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bHy" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a2_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"bHz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"bHG" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "specops_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bHN" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bHO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "specops_dock_pump"},/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "specops_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "specops_dock_sensor"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bHV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "specops_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bJl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"bJm" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bKo" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"bNZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"bPc" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bPj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bPl" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bPp" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bPq" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bPr" = (/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a1_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a1_dock_pump"; tag_chamber_sensor = "d1a1_dock_sensor"; tag_exterior_door = "d1a1_dock_outer"; tag_interior_door = "d1a1_dock_inner"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a1_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bPs" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a1_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"bPt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d2a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two)
+"bPx" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two)
+"bPz" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d2a1_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d2a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2a1_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d2a1_dock_pump"; tag_chamber_sensor = "d2a1_dock_sensor"; tag_exterior_door = "d2a1_dock_outer"; tag_interior_door = "d2a1_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two)
+"bPD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"bPE" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bPF" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bPN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bPO" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bPS" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bPX" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bPY" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bQa" = (/turf/simulated/floor,/area/tether/station/stairs_one)
+"bQc" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bQd" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bQe" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "trade_shuttle_dock_airlock"; pixel_x = 28; pixel_y = 0; req_one_access = list(13); tag_airpump = "trade_shuttle_dock_pump"; tag_chamber_sensor = "trade_shuttle_dock_sensor"; tag_exterior_door = "trade_shuttle_dock_outer"; tag_interior_door = "trade_shuttle_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bQj" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bQk" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "nuke_shuttle_dock"; pixel_x = -28; pixel_y = 0; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bQl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bQm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "trade_shuttle_dock_sensor"; pixel_x = 30; pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bQt" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "nuke_shuttle_dock_sensor"; pixel_x = -30; pixel_y = 8},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bQu" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bQv" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"bQx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bQz" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"bQC" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "exterior access button"; pixel_x = -28; pixel_y = -6; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bQD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bQF" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bXl" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bXm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two)
+"bXn" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"bXs" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/action_figure,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/binary/passive_gate/on,/turf/simulated/floor/plating,/area/hallway/station/docks)
+"bXG" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bXI" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bXJ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bXK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
+"bYg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
+"bYh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
+"bYi" = (/obj/structure/closet/crate,/obj/random/junk,/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bYj" = (/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bYk" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bYl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bYm" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bYr" = (/turf/space,/area/syndicate_station/arrivals_dock)
+"bYt" = (/obj/structure/window/reinforced,/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/engineering/foyer)
+"bYJ" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/machinery/telecomms/relay/preset/tether/station_high,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
+"bYK" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/telecomms/relay/preset/tether/station_low,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief)
+"bYN" = (/obj/item/device/instrument/violin,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bYP" = (/turf/simulated/wall,/area/vacant/vacant_restaurant_lower)
+"bZd" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"bZi" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor/tiled,/area/engineering/workshop)
+"bZk" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/caution/cone,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZt" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"bZv" = (/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower)
+"bZz" = (/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZD" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZF" = (/obj/structure/closet/crate,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZH" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower)
+"bZJ" = (/obj/random/drinkbottle,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower)
+"bZK" = (/obj/item/weapon/bananapeel,/obj/item/trash/unajerky,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZO" = (/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZP" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cell/potato,/obj/item/frame/apc,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZQ" = (/obj/random/trash,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZR" = (/obj/random/junk,/obj/structure/closet,/obj/random/maintenance/clean,/obj/item/taperoll/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZS" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZT" = (/obj/structure/stairs/west,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"bZZ" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"cah" = (/obj/structure/girder,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower)
+"cak" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"cal" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/engineering/engine_eva)
+"cbY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/airless,/area/engineering/atmos/backup)
+"cce" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"ccg" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup)
+"cch" = (/turf/space,/area/shuttle/cruiser/station)
+"ccl" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/thermoregulator,/turf/simulated/floor,/area/engineering/storage)
+"col" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"dlV" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"ezX" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two)
+"hPi" = (/obj/machinery/light/small,/turf/simulated/floor,/area/engineering/shaft)
+"jys" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"jRS" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower)
+"klO" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
+"kCH" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"kLN" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "tether_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "tether_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "tether_dock_pump"; tag_chamber_sensor = "tether_dock_sensor"; tag_exterior_door = "tether_dock_outer"; tag_interior_door = "tether_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"lGA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"mNU" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"nov" = (/obj/structure/railing,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/engineering/shaft)
+"oEH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/docks)
+"qBc" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"scB" = (/obj/machinery/computer/shuttle_control/tether_backup{icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"tKI" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "tether_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one)
+"uiN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/donut/chaos,/turf/simulated/floor/grass,/area/hallway/station/atrium)
+"uWS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = 28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one)
+"vbm" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"vyI" = (/mob/living/simple_mob/animal/passive/bird/parrot/poly,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief)
+"wlD" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_one)
+"xfY" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium)
+"xMk" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor,/area/engineering/shaft)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahWahVahVahVahVahVaaaaaaaaaahVahVahVahVahVahVahWahVahVahVahVahVahVahVahWahWaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabnabnabnaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabQabSabRabTabQaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaacaacaacaaaaaaaajackabSacaabTackacbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaacaacaacaacaacaacaacabCabCaamackackackaceabCabCaaaaaaaaaaataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJagJagJagJagJaanagJagJagJagJacLacLacLacLacLacLacLacLaczaczaczaacaacabCacAacjackackacjackacBabCaacaacaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacLaasaaAaazaaGaaCaaLacLaaNacRaczaacaacabCadgacjackadhacjacjadiabCaacaacaacaacaataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaanagJaaQagJagJacJacJacJacJacJacJacJacJacJacLaaRaaXaaXabeabbabgabfadvaduaczaacaacabCabiackackacjacjackadwabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaarabrabuabtaebaeaabwaaBabyabxaczaacaacabCaegaefackacjacjachabAabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaaEabDabGabFabIabHabMaaFabOablarMarMarMarMarMabPackackackaeLabCabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjabjabjacJacJacJacJacJacJacJacJacJacJabWalFalFaaUalFalFalFacdacuacqarMacxacOatbarMabCabCaaYabCabCabCaacaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJagJacJabkacJagJacJacJacJacJacJacJacJacJacJadfacXadoafMafQaaOagPafPadsadqadCadtadFadDadIadGadKadGadGadLabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfadQagNafLagOafLahZafPadVadUarMadWabNahoarMahqackackackaehaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJaewaetaaSaibaezaidaeCaeAaeEaeDaJsaJsaJsaJsaJsaJsaJsaJsackaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaeQagNafLaiQaiPaeSafPacuaeVaJsaiTaiTaeWaeXaiVcclaJsachaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaffalrafiafjajyafkafPacuafmaJsafpajDaeWaeWaJVafsaJsackaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaanacJacJacJacJacJacJacJacJacJacJacJacJacJacJalFalFalFalFalFafSalFacdafZaCjaJsakmakmaeWaeWaknakoaJsakqagfaikackackackackackackackackackackackackackackackackackackackaikaataataataacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksaksacJacJacJacJacJacJacJacJaiMagFagIajtagLakOahdaiMacuaeVaJsakSakSaeWaeWakTaooaJsapiahfaikackackackackackackackackackackackackackackackackackackackaikaataacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgaksaksacgacgacJacJacJacJacJacJacJacJabqahsahyabsahBalbahKahDahOahMaJsalBalDahRahTalEalHaJsahYaeGaikackackackackackackackackackackackackackackackackackackackaikaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgacJacJacJacJacJacJacJacJaiMaiyaiCajtaiDamlaiFaiMadVaiGaJsaLhaLiaeWaiNamqamqaJsaiRaiOaikackackackackackackackackackackackackackackackackackackackaikadOadOadOadOadOadOadOadOadOadOadOaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgagJagJagJajpagJagJagJagJaiMaiMaiMaiMaiMaiMaiMaiMajCajBaJsajGaLiaeWaiNamOajIaJsamRaiOaikackackackackackackackackackackackackackackackackackackackaikajvajwahvajzajAaiZajdajhajxajxadOaacaacadPadPadPadPadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaczadsakeaJsakgakjaeWaklakkakpaJsangaiOaikaikackackackackackackackackackackackackackackackackackackaikajeajiajjajjajjajlajLajPajSajXadOaacaacadPaeBahxahzadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacarqarqarqarqarqaczaczaczaczaczaczaczanlakXakWaJsaJsaJsakZalcaJsaJsaJsaikaeGackaikackackackackackackackackackackackackackackackackackackaikafDajEaeyaeyaeyakKaeyaeyalJaCoadOaacaacadPahAahSahXadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgalxalwalzabZaacaacaacarqnovxMkalKalGaczanLadAaadaowalRalWafOambalZamfamcamkamjamnanZadZampaczaeGackaikackackackackackackackackackackackackackackackackackackaikajmajnajqajqajqajHaeyaeyalialCadOaacaacadPaiiaiJaiKadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWabZabvabBabEabZabZabZabZabZalGhPianeancaczaopaoraoqaoqaoqaoqanoanranqanuantantantanzanyanCanBanFanDackaikackackackackackackackackackackackackackackackackackackaikajMakMajQajQajRajJaeyaeyaljaeyadPadPadPadPaiLaiLaiLadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanPahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaohaoXaojaolaokaonaaeapwabZaczaczaotaczaoyaoZapcapbapbapbapbapbapeaoBaoFapgapgapgaijapgapgapgaijaoHjRSaikackackackackackackackackackackackackackackackackackackaikadOadOadOadOadOajNaeyaeyaljalladbakfaiSaiUaiSaiSakhadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahVahVahVaaaaaaahWaohaqKaqIappapoaprapqapuapsarOapvapyapxapDapBapIapGapKapJapJapJapMapLapgapNapPapOapTapQapQapXaijapUachaikackackackackackackackackackackackackackackackackackackaikajTajUajTajUajTakiakrakraktakuakcakwakxakyakzaiYajaadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaacbYaqeaqfadSaqaaqJaqhadYaqjaqiaqlaeraqoaqmaquaqqaqDaqBaqFaqEaqQaqOaqSaqRapgaqvajFaqGaqGajFapQaqHaijapUachaikackackackackackackackackackackackackackackackackackackaikakAajVajVajVajWakBajOajOakCakDasTajbakEakFakGaiSakHadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahWahWahWahWabZarzaryaRdccearBadeaqMaqMaqMaqMacSaqNaqNarEarKaqNaqNacSarVarTaqTarXasgasbasnaskasraspasxassaijapUacjaikackackackackackackackackackackackackackackackackackackaikajYajZakaakbakIakUakdalkafbalqadPajcadPakLakJalealeadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlarQarnatgaqLatfaqMathatjarraruartarxatkatBatAarFaqNarVarTarHatFapgarIatIatGarNatJapQaChaijatTaiRaikackackackackackackackackackackackackackackackackackackaikadOadOadOadOakNakPadOadOadOadOadPaizadPadPadPajfajfadPaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlccgauWarRauYafTaqMavdavhavgavhavhavoavmaslavqasmaqNarVavwavzavxavDavBajFavFavIajFapQavLaijavPapiaikackackackackackackackackackackackackackackackackackackaikajoacmahwajgakValUakYafCaacaacadPadPadPaacadPadPadPadPaacaacaacaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWaohaCiarnawkaswaszasyaqMasAaenaenaenaenaenasUasUatAawBacSawMawDarHawOapgatdapQawRapQapQapQawTaijavPaiXaikackackackackackackackackackackackackackackackackackackaikajoacmafXalaajkakQalfafCaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWabZabZarkaxBaxAaxHaxGaqMbkxaxPaxOagdatQbZdatNatSaxUaxYaxWatXatWarHaybapgatYatZawRayiagHalsaucaijaysabCaikaikaikaikaikaikafCafCafCafCaaTaaTaaTaaTaaTaaTaaTaaTaaTafCafCafCafCalgafCafCafCafCaacaacaacaacaacaacaacaacaacaacaacaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahWahWahWahWabZaueaueaueaueaueaqMaqMaqMaqMacSaukaenaulazeaenaBqaqNauwauvauyahcauzauzauzazkauzauzauzauzaijavPanEachazDazBazBazJazJazIazXafYacfaihagqaALaahaahaahaakafgaiWajrajsafeagvaldajuaCtaAHashashashashashashashashashashashashaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaAQavfavfatOaARaATaASaBlamdaBpakRavsaCfaqNbZiafUasUasUaenawlaByatXawnaBBaBAaAWaBCaBXaBDaBEaAWaciaDDaaVavPalQaBHaBRalQalTalTalTalTagwabXacnacmaCeacpacpacpacpacpxfYacpacpacpacpacpacractaCxaCwaCyamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaCBaCBatOaCgauAauAauBaJlaCEauAauAaJwaCMaJxaenasUasUaCPaCQacSaCTaCRaKtaCVaAWaAWaAWaKNaLjaKUaLlaDjaaVapUalQaDsaDMalQasuaDPamEalTalhacwadzacyacyacyacFamJacmacmadHacmamJacFacyacyacyadabNZaDZamMamgamgamgamgamgamgamgamgamgamgaloalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaEaaLIatOaEbauAauAavjaLXaEfauAauAaJwaCMaJxaMZaMBaNbaNaaenaqNaEzaExaKtaEAaAWaEEaBXaOLaEMaAWaETaERaaVapUaBHaEWaEXalQaFcaEZaFfaFeaFhacmacyacyacyacGacIamCamoadxadyamtamDacKacGacyacyacyadHaCwamMamgamgamgamgamgamgamgamgamgamgaFIalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBalpaFJatOaFLaFOaFLaFOaQvaFXbZtcalcakaqNaQZaQZaRwaRAaRyaRyaqNaEzaCRaKtaGsaAWaAWaAWaRZaGxaaVaaVaaVaaVaGyaGPaGIaofalQaogavSaoialTaHbacmacYacDadcacFacIacEacHadnagaacHamiacKacFacYuiNadcadHaHzamMamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaHTaHQatOatOaSCaSCaSCaSCaHYaSCaSCaSCacSaqNaqNaByaIfaqNaqNacSaEzaIiaKtaIlaAWaBCaBXaTiaInaaVatpaIoamzaIpalQalQalQalQaoOaoOalTalTaIsacmacYadladcacGacIacEacHamaamyacHamiacKacGacYadladcadHaITaoVamgamgamgamgamgamgamgamgamgamgalAaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaJjaJnaJmbdsaoqaTKaTJaJyaTLaoqaoqaalaoqaUlaTQaUoaUnaTKaluaUlatWaKtaKbaAWaAWaAWaUUaKlaaVapiaKraUXaKzaeOaeOaeOaeOaeOaeOaesasYaeMacmacyacyacyacFacIacEacHamGadMacHamiacKacFacyacyacyadHaKQaLcamgamgamgamgamgamgamgamgamgamgalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaLpaLtalLaLAaLyaLGaLCaLKaLHaLOaLLaLUaLPaMaaLYaMdaMcaMgaLUaLPaMhaMkaMjaAWaMlaBXaUUaMpaaVaMtaMraMxasvaeOafyafyafyafyaeOaePacmadHacmacTacyacyamJacIacEacHacHacHacHamiacKamJacyacyacTadHaMLamMamgamgamgamgamgamgamgamgamgamgalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaNeaNdaRbaRbagcagcagcagcaNoagcaRbaRbaltaltaNraltaltalvaXZaXZaXZaNFaNHaXZaoJaoJaoJaaVaaVaaVaqsaqtaOjaYfaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacIammammamFamFammammacKacmacmacmacmadHaCwamMamgamgamgamgamgamgamgamgamgamgaOOalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaGBaGBaRbaCcaYHaYFaYJaBgaOSaRVaZgaRbaOYaOWaPaalyalIaltaoGaZraZUaPjaZWaBwaPqamsaCaaoJaacaikamAamBarbakvaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacHacUacUacUacUacUacUacHacmacmacmacmadHaCuamMamgamgamgamgamgamgamgamgamgamgamNalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWagiaQaaRVaRXbaAaTmaQkaQhaQlaRbaQsaQnaQwalXamYaltbbsaQDbbxaQJaQWaQQaQXaQXaRcaoJaacaikardarAaRrarCaeOafyafyafyafyaguafzacmadHacmacTacyacyacFacHacHacHacHacHacHacHacHacFacyacyacTadHaCwamMamgamgamgamgamgamgamgamgamgamgalAalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagiaSabcpaSebcnbcrbcwaRVaSuaRbandamZasSanQawmaSzbeJaSDbeLaSFbeNbeMbfobYtaSLaoJaacaikarZasaaSOascaeOaeOaeOaeOaeOaeOafAacmadHacmacyaddaddaddacGacFamIacmacmamIacFacGaddaddaddacyadHaTAashashashashashashashashasiamMasialAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagibftbfvaRXaTRaRXbfTklOaTWaRbaTXaIOaIOaSBaXXaltaoIaUkbgCaUmbgEbgDaoIbgFaoJaeiaacaikaUEasDaUIaUFafCafCafCafCafCafCanfacmadHacmacyadladladlacyacyacyacmacmacyacyacyadladladlacyadHaCwasIasJasKasLaSoawaasOasIasPasQaVxalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaRbbhjbnwaVzanRbnIaVHaVGvyIaRbaVNaVKaVWaVPaCbaltaTEbXGbXIaWdbXKbXJaoIbgFaoJaacaacaikaqsatoaWjatqafCafEafJafFafNafCaWnacmadHacmacyacCadEamuamradladcacmacmacYuiNadkadEamuacZacyadHaWJasIasJasKatxatyasNasOasIaXwaXlaqkalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWaRbaRbaXCaRbaRbaXRaRbaRbaRbaRbalvalvalvalvalvalvaoJatHaYaaXYaYcaYbaYgaYgaoJafCafCagbafCafCacoafCafCafnageageaggaYtaghacmadHacmacyadmamvamvamwadladcacmacmacYadlamxamvamvamHacyadHaCwasIasJasKatxatyasNasOasIaYWalAalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbaCdbYhbYgaRbaRbaRbbYibYjbYjbYlbYkbYmbYlbYlacsagRagQagTaZqagVagUagWagWawPagXagYagZahbahaaZParhahGahFahHacpacrahIacpacpbayahJacyacyacyacyacyacyacTacmacmacTacyacyacyacyacyacyacWbaIasIasIasIauobaQasIasIasIbaTaurausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbbYJasobYKaRbbYNbYPbYjbYjbYjbYlacvamhacMadpadRadTadXadXaecaeeacpacpacpacpacpahHaimacpacpbbEacpaipaioaiqacpacpairacpacpacpaisahHaCxacmacmacmbbTacpacpacpacpacpacpacpacpacpahHqBcbchbclbckbcxauZavaaeqavcasIbcObcKausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbaRbaRbaRbaRbbYPbYPbYjbYjbYjbYjbYjbYjbZkbZmacsajKbdibdqbdnbdubdubdFbdxbdKbdHbdSbdLbdWbdTbdZbdTbeeafWagoatMaCqaAwatMatMatMaAxaAyaAzaAAbdHaAFaABaCraccaADacNacNaACaAGaAIaAIazbagpbeSbeYavZavZaCUauaagzavcasIbaTbfkausaacaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYPbYjbYjbYjbYjbYjbZzbYlbfFawsawpbfGbfJawsawsawsawtawtawtawuarebfQarfaaTaaTaaTafIagjagkagkafIafIagkagkahiafIacQaglacQacQacVafcacVaiwacVahmahmahmahmahmacValMaePbgfasIasIasIasIasIasIasIasIbcObgrausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYjbYjbZFbZDbZmbYjbYjbYlbYjawsaCpbgGbgJbgHauPawsawUbgOaCSawubhcafoawZawubhgaxbafIahrahCahCahEahPahCahCahQafIahpahLaApaBGacVafHaAvasRacVadradJadBaedadNacVamLacmbhHbhKbhJbhJbhLbidbhLbhJbhJbiraxtausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZHbZJbZvcahbYjbZDbZDbZmbYlbZKbYjbYjawsaxuaxvaxwaxxbiCawsaxzalObiKawuaxCafqafrawuaxDaxEafIahUaicaieaieaieaieaicaifafIaudahLailaixacVagmagnafdacVaeoaejaemaejahuacVamPaCeaCsausausausausausausausausausausausaaqaaqaaqaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZHbZHbYPbZObZPbYjbZzbYlbYjbZQbYjawsbkmawsaxQaxRaxRawsbkpalPbksbkqbkyaftafuawuaxZbXsafIaCkaigaivaiAasCaiAasEaifafIaufahLailaBxacVagmagnafdacVaepaeuaejaevaeHacVamLacmbmvbmAageatsasYatuattabVabYaclaauaavaawaayaaDaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbYPbYPbYPbYPbYPbYPbZRbYlbZSbYlbYlbYlbYjbYjawsaywayxawsayyayyawsauSalSayBayCayDafBafGaekbnobnlafIahUaigasZateaiAatiasEatlafIaugauiaujaupacVagmagnafdacVaeJaejaeKaejaeNacVbocamQamSatKacmacmacmacmacmacmaaoaapaaIaaJaaKaaMaaPaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacbYPbZTbYjbYjbYlbZDbZDbYjbYlbYjbYjawsaxRbouawsawsawsawsazhalSaziawuazjbhaawZawuaelazlafIahUaicatmatnatnatraicatvafIauqaBKaBLautacVagmagnagAacVaeTaeYaeZafaauXacVauhaumamTbpfbpdalYbpibpibpibpmaaxaexaauaaWaaZabaabcaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaacaacaacaacaacbYPbZTbYjbYjbYjbZmbYjbYlbZkbYjbYjawsazMazNawsbQabQaawsazOazObpvawuawbbhaazRawubpzazlafIatwatCatDatEatLatVauxauCafIauqadjadjainacVaBYameagBacVacVafhafvafxacValNaaTamVamWamXaaTaaTaaTaAkaAkaAkbqbaAkaAkaCnabhaauaauaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaacaacaacbYPawuawuawuaeFaeFaeFawuaeIaeRawuawsawsawsawsawsawsawsawtawtawtawuaAmbqfaAoawubqjaAqafIauOauUavnavtavuavyavAavCafIauqadjaitaiuacVagragnagCafKafRaflafwawgacVanaanbanpanhanianjankanmaAkaAOaAPbrVbrXaAkabdabmabpabzabJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawuaCvbzRbZZaAVaAVbCgaBiaBiawHaAZaBaaBbbEWaCzaAVaBdaAVbsvaBfbFfaBhbhaaBiawuawuawuafIafIagkafIavEafIagkafIafIafIauqadjaunauKacVagsagEagDagEagEahhaomagtacVannanpansanvanwannanxanAaAkaAkaAkbtobtraAkabdabKaauaauaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawubttbtsbtybtubtubtubtubtubtubtCbtubtFbtubtubtubtubtubtMbtFbtubtSbtOaBiavGavHavJavKavKavKavMavNavOavKavTavUaAnauuadjauLauNacVagxagyahgavQazcazdasMagGacVanmanGanIanJanKanpanMannaAkaAOaBUaBVbvsaAkabdabmabLabLaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawuaxrbvtaBZbvuaBZaBZaBZaBZoEHaBZaBZaBZaBZaBZoEHaBZaBZaBZaBZbvubvEauTauJavXawcawdawfawqawiawjawoawqawiawrawEatUavkavpauQauRacVayqagKagMagSaheazgaxLahkacVanNanOanSanTanUanVannanWaAkaAkaAkaCCaCDaAkabdabUabLabLaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFaCGbwVaCIaCFawuaCJaCJaCJawuawuaCJaCJaCJawuawuaCJaCJaCJawuaCKaCLbxeaCNaCKawFaxaacPacPawvacPacPawwawGawwawwauEauDavbavbavbacVacVahlahmahmahmahnafVacVacVanXanmanYaoaaobanpanmaocaAkbyyaDhbyAbvsaAkaaqaaqaaqaaqaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFbyEbyDbyGaCFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCKbyNaDnbyPaCKayaaycacPawIawJawKacPawLaxfaxgawwaveavRavVavWaBSaweavYavYavYaxKavYavYaqxawhaxsaodannaoeaosaobannaoeaouamUamUamUamUamUaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKayaayoacPaxjaxnaxoacPaxpaxFaxMawwailaxsawAaxqaxyaBPaxyaAEaxyawCaxyaxyaAuasFaxsaovaoxaozanvaoeaoAaoCaoDamUaoEaoKaoLamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEnbBoaCKayaaycacPaxNaxSaxTacPaxXaydayeawwaBLahjahjawNahjahjahNahNahNaxcahNahNahNahNalNaoMaoNaoeanvanwaoPanYaoQaoRaoSanYanYamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaENaDFaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEObDraCKazAayuacPacPacPacPacPawwawwawwawwailahjaqgaxhayzauGahNahtahtaxiaiEaiaaiaaiIalNaoTaoUaoeaoWaoYapaapdapfaphapjapkaplamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFbFEaFqaFraCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaDJaFtbFHaCKayaaycayfaygayhayjayfaykaynayraytailahjaAsataauHauIahNayKawxaxJaxIaxIaxIaBTalNapmapnaptapzaobapAanpapmaoRapCanpapEamUaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypbGoaFTaFUaFVaFWaDFaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbGyaFYaFZaGaaGbaDKaCKayaayoayfayIayJaBkayfaBnaBoaBraytailahjayRaviauFavlahNawyawyaxVaiaaiaaiaatcalNapFapHanpapRapSapVapWapYapZaqbaqcamUamUaacaacaacaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbHtbHwbHubHyaGzbHzaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbHGbHObHNbHVaGFazfaCKayAayLayfaBsaBtaBuayfaBvaBIaBJaytailahjavraylauFawVahNaiaaiaaxVaiaaiaaiaatPasGaqdaqdaqnaqpaqraqdaqwaqdamUamUamUamUaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbJlaGZaFUaHaaDFaDGaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbJmaHcaFZaHdaDKaDLaCKayMayOayfayfaBMayfayfaytaBNaytaBOailahjawWawXawYaxkahNaiBaiaayEawQauVatRasGasGaqyaqzaqAaqCaqPaqUaqVaqdaqdaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFazQaHtbKoaCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaHvaHwaCAaCKayaayPayQaAcaySayTayUayVayWayXayYailahjaAtawWaxlaxlahNaiaaiaaxVaymaiaaiaasGaqWaqXaqAaqAaqYaqZaraarcargaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKayZazmaznazoazpazpazqazrazsaztazuaBLahjawWawWaxlaxlahNaiHaiaayFayGayHayvasGariaqXarjarmaroarpaqXaqXariaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaaaaabaaaaaaaaaaaaaaaaypaypaypaaaaabbznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaabzqaDJaEnaIcaCKazvazvazwazvazvazxazxazyazxazxazzauMahjahjaxmahjahjahNalmalnawSaxdalnaAJasGarsarvarwarDarGarJarLarParSaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaabznaDEaENaDFaFUlGAaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaacolaDJaEObDraCKaClazCazEazFazGazxazHazKazLaCmazzailailailailaBLaBzahNasHawzasBaxeaubayNasGarUarParParWarYasdaqAaqAaseaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbFEaIybHzscBmNUaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaIAaDJaFtbPcaCKazPazPazSazPazPazxazTazUazVazWazzaBFaBKaBLaArailailasVaiaawzasWasXaubazaasGasfasjariaqXarParPariasjasqaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbGoaFTaFUaFVaFWaDGwlDwlDdlVbwbbwbbwbbwbbwbaabaIbaIbaIbaIbaIbbPjezXbXlaGaaGbbPlaCKazYazPazZaAaaAbazxaAXaAdaAeaAfazzauDauDauDauDauDauDahNaiaalnavvavvalnaBWasGaqdaqdastastastastastaqdaqdaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPpbPrbPqbPsaIMuWSjyskLNtKIbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPtbPzbPxalVaIRaDLaCKaAgaAhaAiaAjaAlazxaAKaAMaANaAUazzaataataataataataatahNatzatzatzatzatzatzahNaataataataataataataataataataacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPDaGZaFUaIUaDGaDGwlDkCHvbmbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPEbXnbXlbPNbPFbPOaCKaAYaAYaAYaAYaAYazzaBcaBeaBeaBeazzaataataataataataataataataataataataataataataataataataataataataataataataataataacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFaBmaIYaCHaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCFaCObXmbPSaCKahWahWahWahWahWazzaBjaBjaBjaBjazzaataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbPYbPXaFUaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCKaFZbQcbQdaCKaaaaaaaaaaaaahWahWahWahWahWahWahWahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznbQjbQeaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQkbQlaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznaBQbQmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQtbQuaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaabQvbQzbQxaJoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabJmbQCbQFbQDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm
index 3aa1c1477a..acca0b4f5c 100644
--- a/maps/tether/tether-06-station2.dmm
+++ b/maps/tether/tether-06-station2.dmm
@@ -318,21 +318,17 @@
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 5
},
-/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"aI" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/structure/table/steel,
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
+/obj/structure/bed/chair{
+ dir = 1
},
-/obj/item/toy/stickhorse,
-/turf/simulated/floor/tiled/dark,
-/area/security/recstorage)
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"aJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -1291,6 +1287,7 @@
icon_state = "bordercolor";
dir = 9
},
+/obj/machinery/camera/network/exploration,
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"bW" = (
@@ -1771,21 +1768,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"cD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 5
},
-/obj/structure/bed/chair{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
-/area/security/security_cell_hallway)
+/area/security/brig)
"cE" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -1836,26 +1843,25 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"cG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 8
},
-/obj/effect/floor_decal/corner/purple/border{
- icon_state = "bordercolor";
- dir = 1
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 9
},
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Pilot"
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/machinery/camera/network/exploration,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/security/brig/visitation)
"cH" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -1984,6 +1990,10 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"cR" = (
@@ -2234,26 +2244,25 @@
/turf/simulated/floor/plating,
/area/engineering/shaft)
"di" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- icon_state = "borderfloor_shifted";
- dir = 8
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
},
-/obj/effect/floor_decal/corner/red/border/shifted{
- icon_state = "bordercolor_shifted";
- dir = 8
+/obj/effect/floor_decal/corner/purple/border{
+ icon_state = "bordercolor";
+ dir = 1
},
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 9
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Pilot"
},
-/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
+/area/tether/exploration/crew)
"dj" = (
/turf/simulated/wall,
/area/security/brig/visitation)
@@ -2894,7 +2903,7 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance/command,
+/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor,
/area/maintenance/evahallway)
"ei" = (
@@ -3289,6 +3298,7 @@
dir = 5
},
/obj/machinery/vending/cigarette,
+/obj/machinery/camera/network/exploration,
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"eL" = (
@@ -3310,6 +3320,10 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/staircase)
"eM" = (
@@ -3405,18 +3419,8 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"eT" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
+/turf/simulated/floor,
+/area/maintenance/station/micro)
"eU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -3525,27 +3529,17 @@
/turf/simulated/floor,
/area/security/interrogation)
"fc" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
+/obj/structure/table/steel,
+/obj/item/toy/stickhorse,
/obj/machinery/camera/network/security{
icon_state = "camera";
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/security/security_cell_hallway)
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
"fd" = (
/turf/simulated/wall/r_wall,
/area/security/interrogation)
@@ -3586,14 +3580,23 @@
/turf/simulated/floor,
/area/tether/exploration/staircase)
"fh" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/machinery/camera/network/command{
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/ai_upload)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"fi" = (
/obj/machinery/alarm{
dir = 4;
@@ -3832,10 +3835,6 @@
/obj/machinery/cryopod{
dir = 4
},
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/security/brig)
"fE" = (
@@ -3913,15 +3912,31 @@
"fK" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/bed/chair,
+/obj/machinery/camera/network/interrogation,
/turf/simulated/floor/tiled/dark,
/area/security/interrogation)
"fL" = (
-/obj/machinery/camera/network/security{
- icon_state = "camera";
+/obj/effect/floor_decal/borderfloor{
+ dir = 8;
+ icon_state = "borderfloor";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ icon_state = "bordercolor";
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/security/interrogation)
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/crew)
"fM" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
@@ -4199,6 +4214,10 @@
/obj/effect/floor_decal/techfloor{
dir = 10
},
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 4
+ },
/turf/simulated/floor/bluegrid,
/area/ai_upload)
"gl" = (
@@ -4490,9 +4509,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/obj/machinery/camera/network/exploration{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"gJ" = (
@@ -4667,13 +4683,6 @@
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"gX" = (
@@ -4719,6 +4728,10 @@
icon_state = "comfychair_preview";
dir = 1
},
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"ha" = (
@@ -4866,6 +4879,24 @@
/turf/simulated/floor,
/area/maintenance/station/exploration)
"hn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"ho" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/purple/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -4876,28 +4907,8 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
-/obj/machinery/camera/network/exploration{
- dir = 1
- },
/turf/simulated/floor/tiled,
/area/tether/exploration/staircase)
-"ho" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/reinforced,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/obj/random/tech_supply,
-/obj/machinery/camera/network/engineering{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/locker_room)
"hp" = (
/obj/structure/cable/green{
d1 = 1;
@@ -5326,19 +5337,19 @@
/turf/simulated/floor/tiled/dark,
/area/security/interrogation)
"hZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
},
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/interrogation)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/reinforced,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
"ia" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -5387,6 +5398,7 @@
/obj/effect/floor_decal/techfloor{
dir = 9
},
+/obj/machinery/camera/network/command,
/turf/simulated/floor/bluegrid,
/area/ai_upload)
"ie" = (
@@ -5456,6 +5468,7 @@
/obj/effect/floor_decal/techfloor{
dir = 5
},
+/obj/machinery/camera/network/command,
/turf/simulated/floor/bluegrid,
/area/ai_upload)
"il" = (
@@ -5544,6 +5557,9 @@
/obj/structure/table/reinforced,
/obj/random/powercell,
/obj/random/tech_supply,
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"ir" = (
@@ -5594,12 +5610,20 @@
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
"iw" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/machinery/camera/network/engineering{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/engineering/locker_room)
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
"ix" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5658,10 +5682,6 @@
/obj/machinery/alarm{
pixel_y = 22
},
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
- },
/turf/simulated/floor,
/area/security/riot_control)
"iA" = (
@@ -5838,23 +5858,14 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"iK" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+/obj/effect/floor_decal/techfloor{
+ dir = 6
},
-/obj/effect/floor_decal/corner/purple/border{
- icon_state = "bordercolor";
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/exploration,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/hallway)
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
"iL" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -5920,6 +5931,10 @@
dir = 4
},
/obj/structure/flora/pottedplant/crystal,
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"iP" = (
@@ -6057,6 +6072,10 @@
dir = 5
},
/obj/machinery/vending/coffee,
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"iZ" = (
@@ -6281,33 +6300,14 @@
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"jm" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/purple/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/exploration{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/hallway)
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
"jn" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/purple/border,
@@ -6408,6 +6408,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"jr" = (
@@ -6848,13 +6852,8 @@
/obj/effect/floor_decal/techfloor{
dir = 6
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/camera/network/command{
- dir = 1
- },
-/turf/simulated/floor/bluegrid,
+/obj/effect/floor_decal/techfloor/hole,
+/turf/simulated/floor/tiled/techfloor,
/area/ai_upload)
"jV" = (
/turf/simulated/wall/r_wall,
@@ -6908,17 +6907,29 @@
/turf/simulated/floor/bluegrid,
/area/ai_upload)
"kc" = (
-/obj/effect/floor_decal/techfloor{
- dir = 10
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ icon_state = "borderfloor";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/effect/floor_decal/corner/purple/border{
+ icon_state = "bordercolor";
dir = 1
},
-/obj/machinery/camera/network/command{
- dir = 1
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/ai_upload)
+/obj/structure/table/rack/shelf,
+/obj/item/device/multitool/tether_buffered{
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = -4
+ },
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/equipment)
"kd" = (
/obj/structure/table/standard,
/obj/item/weapon/aiModule/freeform,
@@ -6963,9 +6974,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
},
-/obj/machinery/camera/network/engineering{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
"kh" = (
@@ -6986,6 +6994,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
"ki" = (
@@ -7098,6 +7109,10 @@
dir = 10
},
/obj/effect/floor_decal/techfloor/hole/right,
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ai_upload)
"kw" = (
@@ -7114,15 +7129,18 @@
/turf/simulated/floor/tiled/techfloor,
/area/ai_upload)
"kx" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/effect/floor_decal/techfloor/hole,
-/obj/machinery/camera/network/command{
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
-/area/ai_upload)
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/starboard)
"ky" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -7263,6 +7281,9 @@
pixel_y = 0
},
/obj/structure/cable/green,
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/substation/exploration)
"kI" = (
@@ -7316,6 +7337,7 @@
pixel_x = 3;
pixel_y = -3
},
+/obj/machinery/camera/network/engineering,
/turf/simulated/floor/plating,
/area/storage/tech)
"kP" = (
@@ -7482,19 +7504,19 @@
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
"la" = (
-/obj/machinery/camera/network/tether,
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 6
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
},
+/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/tiled,
-/area/hallway/station/starboard)
+/area/tether/exploration/pathfinder_office)
"lb" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7512,6 +7534,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
+/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
"lc" = (
@@ -7670,6 +7693,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
"ln" = (
@@ -8289,6 +8313,7 @@
pixel_x = 1;
pixel_y = -1
},
+/obj/machinery/camera/network/engineering,
/turf/simulated/floor/tiled/dark,
/area/storage/tech)
"mf" = (
@@ -8544,6 +8569,7 @@
/area/tether/exploration/pathfinder_office)
"mA" = (
/obj/machinery/message_server,
+/obj/machinery/camera/network/command,
/turf/simulated/floor/tiled/techfloor,
/area/ai_server_room)
"mB" = (
@@ -9029,22 +9055,8 @@
/turf/simulated/floor/tiled/techfloor,
/area/ai_upload_foyer)
"ng" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/tether,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/turf/simulated/floor/tiled,
-/area/hallway/station/starboard)
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
"nh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9240,25 +9252,16 @@
/turf/simulated/floor/tiled/dark,
/area/storage/tech)
"nu" = (
+/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/camera/network/engineering{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/storage/tech)
-"nv" = (
-/obj/machinery/requests_console{
- department = "Tech storage";
- pixel_x = -28;
- pixel_y = 0
- },
-/obj/machinery/camera/network/engineering{
dir = 4
},
-/turf/simulated/floor,
-/area/storage/tech)
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"nv" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_cyborg_station)
"nw" = (
/obj/structure/table/rack{
dir = 8;
@@ -9661,17 +9664,14 @@
/turf/simulated/floor,
/area/storage/tech)
"od" = (
-/obj/structure/table/steel,
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
},
-/obj/item/stack/cable_coil,
-/obj/machinery/camera/network/engineering{
- dir = 8
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
},
-/turf/simulated/floor,
-/area/storage/tech)
+/turf/simulated/floor/tiled,
+/area/engineering/foyer_mezzenine)
"oe" = (
/obj/structure/railing{
dir = 1
@@ -9817,6 +9817,7 @@
/area/maintenance/station/exploration)
"or" = (
/obj/machinery/computer/aifixer,
+/obj/machinery/camera/network/command,
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
"os" = (
@@ -10068,6 +10069,9 @@
/obj/structure/table/steel,
/obj/item/device/aicard,
/obj/item/weapon/aiModule/reset,
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
/turf/simulated/floor,
/area/storage/tech)
"oK" = (
@@ -10288,22 +10292,11 @@
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
"pf" = (
-/obj/effect/floor_decal/borderfloor/corner{
+/obj/structure/catwalk,
+/obj/machinery/camera/network/tether{
dir = 4
},
-/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled,
+/turf/simulated/open,
/area/engineering/foyer_mezzenine)
"pg" = (
/obj/structure/railing{
@@ -10554,30 +10547,11 @@
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
"pA" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for exiting EVA.";
- id = "evadoors";
- name = "EVA Door Control";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/machinery/camera/network/command{
- c_tag = "EVA - Fore"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
+/area/storage/tech)
"pB" = (
/obj/structure/cable/green{
d1 = 1;
@@ -10713,22 +10687,13 @@
/turf/simulated/floor/tiled/steel_grid,
/area/engineering/foyer_mezzenine)
"pN" = (
-/obj/machinery/camera/network/tether{
- dir = 1
+/obj/machinery/requests_console{
+ department = "Tech storage";
+ pixel_x = -28;
+ pixel_y = 0
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/starboard)
+/turf/simulated/floor,
+/area/storage/tech)
"pO" = (
/turf/simulated/wall/r_wall,
/area/hallway/station/port)
@@ -11152,24 +11117,26 @@
/turf/simulated/floor/tiled,
/area/hallway/station/port)
"qx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
-/area/hallway/station/port)
+/area/engineering/foyer_mezzenine)
"qy" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -11337,20 +11304,14 @@
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
"qI" = (
-/obj/structure/table/woodentable,
-/obj/structure/plushie/ian{
- dir = 8;
- icon_state = "ianplushie";
- pixel_y = 6
+/obj/structure/table/steel,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
+/obj/item/stack/cable_coil,
+/turf/simulated/floor,
+/area/storage/tech)
"qJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -11359,6 +11320,10 @@
/area/medical/psych)
"qK" = (
/obj/structure/flora/pottedplant/fern,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/wood,
/area/medical/psych)
"qL" = (
@@ -11542,6 +11507,10 @@
/obj/machinery/photocopier/faxmachine{
department = "Pathfinder's Office"
},
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/pathfinder_office)
"ra" = (
@@ -11725,15 +11694,27 @@
/turf/simulated/floor/tiled/techfloor,
/area/medical/morgue)
"ro" = (
-/obj/structure/table/steel,
-/obj/machinery/camera/network/medbay{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for exiting EVA.";
+ id = "evadoors";
+ name = "EVA Door Control";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"rp" = (
/obj/item/device/radio/intercom{
dir = 8;
@@ -11826,6 +11807,10 @@
/obj/effect/floor_decal/techfloor{
dir = 4
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/medical/morgue)
"rA" = (
@@ -11943,6 +11928,10 @@
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
"rL" = (
@@ -12085,18 +12074,21 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/camera/network/tether{
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/effect/floor_decal/corner/lightgrey/border{
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/station/port)
@@ -12149,16 +12141,18 @@
/turf/simulated/floor/tiled,
/area/hallway/station/port)
"rZ" = (
-/obj/structure/bed/chair{
- dir = 1
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
},
-/obj/machinery/camera/network/medbay{
- dir = 1
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/rods,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"sa" = (
/obj/structure/bed/chair{
dir = 1
@@ -12376,21 +12370,17 @@
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
"sq" = (
-/obj/machinery/light{
- icon_state = "tube1";
+/obj/structure/table/woodentable,
+/obj/structure/plushie/ian{
+ dir = 8;
+ icon_state = "ianplushie";
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/camera/network/security{
- dir = 8
- },
-/obj/fiftyspawner/rglass,
-/obj/fiftyspawner/rods,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
+/turf/simulated/floor/wood,
+/area/medical/psych)
"sr" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/grille,
@@ -12561,9 +12551,17 @@
/turf/simulated/floor/wood,
/area/medical/psych)
"sH" = (
-/obj/structure/closet/crate/bin,
-/turf/simulated/floor/wood,
-/area/medical/psych)
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
"sI" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall,
@@ -12653,26 +12651,10 @@
/turf/simulated/floor/tiled/white,
/area/medical/morgue)
"sN" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/table/steel,
+/obj/effect/floor_decal/techfloor{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/tiled/techfloor,
/area/medical/morgue)
"sO" = (
@@ -12997,20 +12979,9 @@
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"tt" = (
-/obj/structure/sign/department/morgue{
- pixel_x = 32
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/wood,
+/area/medical/psych)
"tu" = (
/turf/simulated/wall,
/area/medical/resleeving)
@@ -13023,15 +12994,19 @@
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
"tw" = (
-/obj/structure/closet/secure_closet/chemical{
- req_access = list(64);
- req_one_access = list(5)
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/welding,
+/obj/item/weapon/storage/belt/utility,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/camera/network/medbay{
- dir = 4
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"tx" = (
/obj/machinery/suit_cycler/security{
req_access = null
@@ -13348,48 +13323,13 @@
/turf/simulated/floor/plating,
/area/medical/resleeving)
"tU" = (
-/obj/structure/closet{
- name = "spare clothes"
- },
-/obj/item/clothing/under/color/black,
-/obj/item/clothing/under/color/black,
-/obj/item/clothing/under/color/black,
-/obj/item/clothing/under/color/grey,
-/obj/item/clothing/under/color/white,
-/obj/item/clothing/under/color/blue,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/under/color/lightpurple,
-/obj/item/clothing/under/color/yellow,
-/obj/item/clothing/under/color/lightred,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/black,
-/obj/item/clothing/shoes/white,
-/obj/item/clothing/shoes/blue,
-/obj/item/clothing/shoes/green,
-/obj/item/clothing/shoes/purple,
-/obj/item/clothing/shoes/yellow,
-/obj/item/clothing/shoes/red,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
-/obj/item/device/radio/headset,
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 9
},
-/obj/machinery/computer/guestpass{
- pixel_y = 32
- },
+/obj/machinery/vending/loadout/uniform,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
"tV" = (
@@ -13438,23 +13378,25 @@
/turf/simulated/floor/tiled,
/area/medical/resleeving)
"tY" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 7;
- pixel_y = 1
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/camera/network/medbay,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 4
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/effect/floor_decal/techfloor,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/white,
-/area/medical/resleeving)
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
"tZ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -13798,19 +13740,10 @@
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
"uG" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/head/welding,
-/obj/item/weapon/storage/belt/utility,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
+/obj/effect/floor_decal/industrial/warning,
/obj/machinery/camera/network/command{
- dir = 4
+ icon_state = "camera";
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
@@ -13912,6 +13845,7 @@
pixel_x = 0;
pixel_y = -25
},
+/obj/machinery/camera/network/command,
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
"uO" = (
@@ -14386,6 +14320,10 @@
dir = 4
},
/obj/effect/floor_decal/techfloor,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/medical/resleeving)
"vB" = (
@@ -14498,12 +14436,14 @@
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
"vJ" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/camera/network/command{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
+/area/tether/station/stairs_two)
"vK" = (
/obj/effect/floor_decal/industrial/warning/corner,
/obj/structure/cable/green,
@@ -14553,23 +14493,31 @@
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
"vP" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/station/stairs_two)
-"vQ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
/obj/machinery/camera/network/tether{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
/turf/simulated/floor/tiled,
-/area/tether/station/stairs_two)
+/area/hallway/station/port)
+"vQ" = (
+/obj/structure/sign/department/morgue{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
"vR" = (
/obj/machinery/door/airlock/multi_tile/glass{
dir = 2;
@@ -14832,8 +14780,14 @@
/turf/simulated/floor,
/area/maintenance/evahallway)
"wo" = (
-/turf/simulated/wall/r_wall,
-/area/bridge/meeting_room)
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/station/micro)
"wp" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -14885,25 +14839,12 @@
/turf/simulated/floor/tiled/white,
/area/medical/biostorage)
"wt" = (
-/obj/structure/bed/chair/wheelchair{
- dir = 4
+/obj/structure/closet/secure_closet/chemical{
+ req_access = list(64);
+ req_one_access = list(5)
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/biostorage)
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
"wu" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/simulated/floor/grass,
@@ -14911,6 +14852,10 @@
"wv" = (
/obj/structure/table/woodentable,
/obj/item/weapon/clipboard,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
"ww" = (
@@ -15024,6 +14969,11 @@
/obj/machinery/light,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/computer/guestpass{
+ dir = 1;
+ icon_state = "guest";
+ pixel_y = -28
+ },
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
"wG" = (
@@ -15166,66 +15116,73 @@
/turf/simulated/floor,
/area/maintenance/evahallway)
"wQ" = (
-/obj/structure/table/woodentable,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/computer/guestpass{
- pixel_y = 32
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/station/micro)
"wR" = (
-/obj/structure/table/woodentable,
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/obj/machinery/keycard_auth{
- pixel_y = 28
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/station/micro)
"wS" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Command Conf Room"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"wT" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"wU" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"wV" = (
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"wW" = (
-/obj/machinery/atm{
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"wX" = (
-/obj/structure/flora/pottedplant,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"wY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/micro)
+"wT" = (
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/bridge/meeting_room)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/station/micro)
+"wU" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
"wZ" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
@@ -15256,20 +15213,23 @@
/turf/simulated/wall,
/area/medical/surgery)
"xc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
},
/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
+ dir = 1
},
/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
+/obj/machinery/camera/network/medbay,
/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
+/area/medical/resleeving)
"xd" = (
/obj/structure/cable/green{
d1 = 1;
@@ -15311,37 +15271,6 @@
"xg" = (
/turf/simulated/wall,
/area/maintenance/station/medbay)
-"xh" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"xi" = (
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/obj/structure/table/standard,
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/biostorage)
"xj" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/white,
@@ -15413,22 +15342,26 @@
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"xo" = (
-/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
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/camera/network/medbay,
/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
+ dir = 4
},
-/obj/effect/floor_decal/corner/white/border{
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
dir = 9
},
/turf/simulated/floor/tiled/white,
-/area/medical/surgery)
+/area/medical/biostorage)
"xp" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/firstaid/surgery,
@@ -15472,25 +15405,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/evahallway)
-"xs" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/box/cups,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"xt" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
"xu" = (
/obj/structure/bed/chair,
/obj/machinery/power/apc{
@@ -15636,22 +15550,21 @@
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
"xG" = (
-/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
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/machinery/camera/network/medbay,
/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
+ dir = 8
},
-/obj/effect/floor_decal/corner/white/border{
- dir = 5
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
},
/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
+/area/medical/surgery_hallway)
"xH" = (
/obj/structure/cable/green{
d1 = 2;
@@ -15675,46 +15588,18 @@
/obj/structure/railing,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"xJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance/command{
- req_access = list(19)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor,
-/area/bridge/meeting_room)
"xK" = (
-/obj/structure/table/woodentable,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
},
-/obj/machinery/camera/network/command{
- c_tag = "Command Meeting Room West";
- dir = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"xL" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"xM" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"xN" = (
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
+/turf/simulated/floor/tiled/white,
+/area/medical/biostorage)
"xO" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/syringegun,
@@ -15862,6 +15747,10 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"xZ" = (
@@ -15884,30 +15773,21 @@
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
"ya" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/purple/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/camera/network/exploration,
-/obj/structure/table/rack/shelf,
-/obj/item/device/multitool/tether_buffered{
+/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
},
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_y = -4
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
},
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/obj/effect/floor_decal/corner/white/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
"yb" = (
/obj/effect/floor_decal/industrial/loading,
/turf/simulated/floor/tiled/white,
@@ -15990,149 +15870,22 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"yh" = (
-/turf/simulated/open,
-/area/bridge/meeting_room)
-"yi" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"yj" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"yk" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"yl" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"ym" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"yn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"yo" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Command Secretary"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"yp" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"yq" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/red,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"yr" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Command Secretary"
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
"ys" = (
-/obj/machinery/camera/network/command{
- c_tag = "Command Meeting Room East";
- dir = 9
+/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/wood,
-/area/bridge/meeting_room)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
"yt" = (
/obj/machinery/light{
icon_state = "tube1";
@@ -16215,17 +15968,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
-"yB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/command{
- req_access = list(19)
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/station/micro)
"yC" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor/glass,
@@ -16322,102 +16064,6 @@
"yJ" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/micro)
-"yK" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"yL" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 1
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"yM" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"yN" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"yO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"yP" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"yQ" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"yR" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/blue,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"yS" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 8
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"yT" = (
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"yU" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
"yV" = (
/obj/structure/table/standard,
/obj/item/device/glasses_kit,
@@ -16489,25 +16135,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"zb" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance/command{
- req_access = list(19)
- },
-/turf/simulated/floor,
-/area/bridge/meeting_room)
-"zc" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
"zd" = (
/obj/structure/cable/green{
d1 = 1;
@@ -16736,6 +16363,10 @@
/obj/effect/floor_decal/corner/white/bordercorner2{
dir = 6
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
"zu" = (
@@ -16753,6 +16384,10 @@
/obj/effect/floor_decal/corner/white/bordercorner2{
dir = 8
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
"zv" = (
@@ -16903,13 +16538,6 @@
},
/turf/simulated/floor/plating,
/area/medical/patient_a)
-"zG" = (
-/obj/structure/table/woodentable,
-/obj/structure/flora/pottedplant/small{
- pixel_y = 12
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
"zH" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/borderfloorwhite{
@@ -17131,9 +16759,6 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -17178,9 +16803,6 @@
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
},
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -17253,6 +16875,7 @@
dir = 8
},
/obj/machinery/vending/coffee,
+/obj/machinery/camera/network/medbay,
/turf/simulated/floor/wood,
/area/medical/surgery_hallway)
"Ah" = (
@@ -17345,7 +16968,6 @@
/area/medical/surgery_hallway)
"Ap" = (
/obj/structure/table/glass,
-/obj/machinery/camera/network/medbay,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -17576,7 +17198,6 @@
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
-/obj/machinery/camera/network/medbay,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -18171,6 +17792,10 @@
/obj/item/weapon/storage/box/masks,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"BB" = (
@@ -18925,15 +18550,16 @@
/area/medical/surgery_hallway)
"CG" = (
/obj/structure/closet/emcloset,
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 6
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"CH" = (
@@ -19088,6 +18714,10 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 8
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"CV" = (
@@ -19250,23 +18880,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Dh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/purple/border{
- dir = 6
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/camera/network/exploration{
- dir = 1
- },
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
"Di" = (
/obj/structure/cable/green{
d1 = 4;
@@ -19287,11 +18900,22 @@
/turf/simulated/floor/tiled/techfloor,
/area/ai_server_room)
"Dk" = (
-/obj/machinery/camera/network/command{
- dir = 1
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
-/area/ai_server_room)
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
"Dl" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -19299,15 +18923,12 @@
/turf/simulated/floor/tiled/techfloor,
/area/ai_server_room)
"Dm" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/camera/network/engineering{
+ dir = 8
},
-/obj/machinery/camera/network/command{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ai_upload_foyer)
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
"Dn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -19356,13 +18977,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"Dq" = (
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
-"Dr" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -19372,8 +18986,16 @@
icon_state = "intercom";
pixel_x = 32
},
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ai_upload_foyer)
+"Dr" = (
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
"Ds" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 9
@@ -19480,13 +19102,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"Dz" = (
-/obj/machinery/recharge_station,
-/obj/machinery/camera/network/command{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ai_cyborg_station)
"DA" = (
/obj/structure/railing{
dir = 4
@@ -19792,28 +19407,17 @@
/turf/simulated/floor,
/area/maintenance/station/exploration)
"Ea" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/camera/network/tether,
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 4
},
/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/camera/network/civilian{
+ dir = 9
},
-/turf/simulated/floor/tiled,
-/area/hallway/station/port)
+/turf/simulated/floor/tiled/dark,
+/area/tether/station/public_meeting_room)
"Eb" = (
/obj/structure/ladder/up,
/turf/simulated/floor,
@@ -19892,30 +19496,14 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"Ei" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/purple/border{
- icon_state = "bordercolor";
+/obj/machinery/atmospherics/portables_connector{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/camera/network/exploration{
- dir = 4
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"Ej" = (
/obj/effect/floor_decal/rust,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -20162,17 +19750,12 @@
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"EE" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 5
- },
-/obj/machinery/camera/network/engineering{
+/obj/effect/floor_decal/corner/white/border{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/engineering/foyer_mezzenine)
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
"EF" = (
/obj/structure/cable/green{
d1 = 4;
@@ -20266,23 +19849,16 @@
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
"EM" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/obj/structure/cable/green,
-/obj/machinery/camera/network/medbay{
- dir = 1
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room)
+/turf/simulated/floor/tiled,
+/area/security/brig)
"EN" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
@@ -20313,25 +19889,24 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"EP" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/simulated/floor/tiled/white,
-/area/medical/ward)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
"EQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -20457,6 +20032,10 @@
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
"Fa" = (
@@ -20470,12 +20049,12 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"Fb" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
-/area/security/brig)
+/area/security/brig/visitation)
"Fc" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
@@ -20798,24 +20377,25 @@
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"Fu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
/obj/effect/floor_decal/borderfloor{
- dir = 4
+ dir = 1
},
/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled,
-/area/hallway/station/starboard)
+/area/hallway/station/port)
"Fv" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
@@ -20838,6 +20418,53 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
+"Fx" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "sec_riot_control"
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"Fy" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/equipment)
+"Fz" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/starboard)
"FA" = (
/obj/structure/railing{
dir = 8
@@ -20848,6 +20475,28 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"FB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/starboard)
"FC" = (
/obj/structure/table/rack{
dir = 8;
@@ -20857,6 +20506,15 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"FD" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/station/stairs_two)
"FI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -20962,13 +20620,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"Hg" = (
-/obj/machinery/keycard_auth{
- pixel_y = -28
- },
-/obj/structure/flora/pottedplant,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
"Hq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -21788,29 +21439,6 @@
},
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
-"PP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
"PR" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -22339,16 +21967,6 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/station/public_meeting_room)
-"Us" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "sec_riot_control"
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
"UE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -22570,17 +22188,6 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"Wk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/security/security_cell_hallway)
"Ww" = (
/obj/effect/floor_decal/rust,
/obj/structure/closet,
@@ -22648,12 +22255,6 @@
},
/turf/simulated/floor/tiled/white,
/area/maintenance/station/sec_lower)
-"Xd" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
"Xk" = (
/obj/structure/table/steel,
/obj/item/device/flashlight/lamp{
@@ -22789,30 +22390,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"XX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
-"Yc" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/station/public_meeting_room)
"Yd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -28385,7 +27962,7 @@ aP
lv
ej
mE
-nu
+pA
nY
aP
pd
@@ -28659,7 +28236,7 @@ bW
fX
gs
gS
-ho
+hZ
hL
iq
iZ
@@ -28669,7 +28246,7 @@ kK
lx
mg
mG
-nv
+pN
nZ
oa
kJ
@@ -29217,12 +28794,12 @@ ch
ch
af
RE
-XX
+EP
PM
an
EZ
Ix
-Dq
+BV
dx
fX
gw
@@ -29522,7 +29099,7 @@ lA
ml
mK
nz
-od
+qI
oL
kJ
pJ
@@ -29642,7 +29219,7 @@ ax
Za
Fq
af
-di
+cG
do
dt
af
@@ -29786,7 +29363,7 @@ bj
af
aq
cp
-BV
+Fb
af
bN
ep
@@ -29797,7 +29374,7 @@ gw
gw
gw
hP
-iw
+Dm
jb
jF
fX
@@ -29805,7 +29382,7 @@ ac
ac
kf
mM
-mO
+pf
oe
oM
oM
@@ -30067,7 +29644,7 @@ ah
aA
MC
HH
-PP
+cD
Qy
cr
Lx
@@ -30078,7 +29655,7 @@ eS
fD
Pm
aS
-Us
+Fx
Op
hQ
iu
@@ -30103,7 +29680,7 @@ sw
sw
uQ
vp
-vP
+FD
sw
ac
ac
@@ -30347,7 +29924,7 @@ at
UO
XH
aS
-ak
+EE
aB
ak
bm
@@ -30380,20 +29957,20 @@ oM
pK
qp
re
-rP
+vP
sw
te
te
te
te
vr
-vQ
+vJ
sw
uu
vC
wl
wM
-xi
+xK
xO
vT
aP
@@ -30502,7 +30079,7 @@ bw
bD
bF
ZH
-Fb
+EM
Rq
cs
cu
@@ -30930,7 +30507,7 @@ aS
Ld
Ui
aS
-Wk
+gW
Eu
dR
aJ
@@ -31224,15 +30801,15 @@ TY
TY
kj
kf
-EE
+od
nD
oj
oN
-pf
+qx
pM
qt
rj
-rW
+rV
KI
qH
rp
@@ -31243,7 +30820,7 @@ Yf
vT
uA
vU
-wt
+xo
xa
xk
xS
@@ -31498,7 +31075,7 @@ aS
bq
fZ
aS
-gW
+hn
ht
hV
hV
@@ -31778,7 +31355,7 @@ QH
ds
dT
Vm
-fc
+fh
fI
ga
cq
@@ -31798,14 +31375,14 @@ ph
mS
DO
hr
-qx
+Fu
Vw
Xq
TO
Do
VK
Gf
-Yc
+Ea
LL
po
po
@@ -31950,7 +31527,7 @@ KI
KI
KI
po
-tw
+wt
uU
vX
wv
@@ -32082,11 +31659,11 @@ fq
jj
pj
kj
-Ea
+rW
rk
fM
pn
-qI
+sq
rq
rA
sh
@@ -32097,7 +31674,7 @@ tK
tK
ww
xb
-xo
+ya
xZ
yY
An
@@ -32210,7 +31787,7 @@ gb
gE
fb
WL
-hZ
+iw
fd
fN
jQ
@@ -32337,17 +31914,17 @@ PV
RS
aj
lp
-cD
+aI
aj
lp
-cD
+aI
cA
as
az
-aI
+fc
Kv
fd
-fL
+Mp
gc
Mp
fe
@@ -32540,7 +32117,7 @@ Cs
CJ
CS
De
-EM
+wU
BF
aa
aa
@@ -32658,7 +32235,7 @@ qL
ru
rD
pp
-sH
+tt
tq
tO
uZ
@@ -32798,7 +32375,7 @@ fQ
pq
qM
rv
-rZ
+sH
pp
sI
po
@@ -32813,7 +32390,7 @@ zf
xw
xw
zY
-rv
+Dr
rv
AK
Ba
@@ -32948,7 +32525,7 @@ tQ
vb
wb
wC
-xc
+xG
wb
yf
tQ
@@ -33058,7 +32635,7 @@ de
de
eB
Eh
-Ei
+fL
gz
gN
hI
@@ -33067,7 +32644,7 @@ iY
ke
ky
ea
-la
+kx
lJ
lJ
lJ
@@ -33218,7 +32795,7 @@ pm
DJ
DS
DV
-Fu
+FB
pU
oW
pt
@@ -33227,7 +32804,7 @@ ry
sc
pp
sj
-tt
+vQ
tS
vc
wd
@@ -33356,7 +32933,7 @@ hy
hy
hC
nM
-pN
+pQ
DL
DL
DL
@@ -33392,7 +32969,7 @@ Cw
Fi
CW
Dp
-EP
+Dk
EV
Fc
BL
@@ -33510,7 +33087,7 @@ pV
pV
pV
sk
-sN
+tY
tu
tU
vd
@@ -33621,7 +33198,7 @@ RS
xy
cY
bA
-cG
+di
dy
dm
eF
@@ -33631,7 +33208,7 @@ Ek
gZ
bA
iy
-jm
+jK
kn
kn
ea
@@ -34080,12 +33657,12 @@ pV
so
ti
tu
-tY
+xc
Fj
wi
wI
xf
-xG
+ys
yx
zm
Fg
@@ -34500,7 +34077,7 @@ ac
ac
uW
qE
-ro
+sN
rz
sf
sE
@@ -34634,7 +34211,7 @@ zA
kp
li
nN
-pN
+pQ
DL
ac
ac
@@ -34650,11 +34227,11 @@ uW
tu
tu
vx
-wo
-wo
-wo
-wo
-yB
+yJ
+yJ
+yJ
+yJ
+wS
sB
ac
ac
@@ -34772,7 +34349,7 @@ ks
Es
El
pF
-As
+Fy
kp
nc
nN
@@ -34792,10 +34369,10 @@ ac
tu
uq
vy
-wo
-yh
-yh
-wo
+yJ
+eT
+eT
+yJ
yC
sB
ac
@@ -34906,7 +34483,7 @@ eW
fC
eb
eb
-hn
+ho
cZ
iy
jx
@@ -34918,7 +34495,7 @@ As
kp
nh
nN
-pQ
+Fz
DL
ac
ac
@@ -34934,10 +34511,10 @@ ac
tu
ur
vz
-wo
-yh
-yh
-wo
+yJ
+eT
+eT
+yJ
yD
sB
ac
@@ -35053,7 +34630,7 @@ cZ
iJ
jy
kp
-ya
+kc
lk
pF
As
@@ -35076,10 +34653,10 @@ ac
tu
us
vA
-wo
-yi
-yK
-wo
+yJ
+eT
+eT
+yJ
yE
sB
ac
@@ -35192,7 +34769,7 @@ gj
gL
hB
cZ
-iK
+iB
jo
kp
lq
@@ -35200,7 +34777,7 @@ lY
qb
Bt
kp
-ng
+nh
nR
pQ
DL
@@ -35218,10 +34795,10 @@ ac
tu
ut
vB
-wo
+yJ
eT
-yK
-wo
+eT
+yJ
yF
sB
ac
@@ -35360,10 +34937,10 @@ sF
sF
sF
sF
-wo
-yj
-yL
-wo
+yJ
+eT
+eT
+yJ
yG
sB
ac
@@ -35502,10 +35079,10 @@ vF
wn
wP
xr
-xJ
-yk
-yM
-zb
+wQ
+wR
+wR
+wT
yI
sB
ac
@@ -35641,13 +35218,13 @@ uc
pv
pv
vG
-wo
-wo
-wo
-wo
-yl
-xh
-wo
+yJ
+yJ
+yJ
+yJ
+eT
+eT
+yJ
yJ
yJ
ac
@@ -35783,15 +35360,15 @@ oY
oY
oY
oY
-wo
-wQ
-xs
-xK
-ym
-yO
-wV
-zG
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
ac
ac
ac
@@ -35908,7 +35485,7 @@ kt
lO
mz
qZ
-Dh
+la
kt
nh
nR
@@ -35925,15 +35502,15 @@ ud
uE
vi
oY
-wo
-wR
-wV
-wV
-yn
-yO
-wV
-yN
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
ac
ac
ac
@@ -36067,15 +35644,15 @@ qc
qc
qc
oY
-wo
-wS
-wV
-wV
-yn
-yO
-wV
-yT
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
ac
ac
ac
@@ -36209,16 +35786,16 @@ ue
uF
tD
oY
-wo
-wT
-xt
-xL
-yo
-yP
-xN
-yU
-wo
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
+yJ
ac
ac
ac
@@ -36348,19 +35925,19 @@ qe
sP
ty
qe
-uG
+tw
vj
vH
-wo
-wU
-wV
-xM
-yp
-yQ
-zc
-wV
-wV
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
aP
aP
aP
@@ -36493,16 +36070,16 @@ qc
pz
qc
vI
-wo
-wV
-wV
-xM
-yq
-yR
-zc
-wV
-wV
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
aP
aP
aP
@@ -36624,7 +36201,7 @@ kG
kY
le
pb
-pA
+ro
qf
qS
rI
@@ -36634,17 +36211,17 @@ tA
uf
pz
qc
-vJ
-wo
-wW
-wV
-xN
-yr
-yS
-xN
-wV
-wV
-wo
+uG
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
aP
aP
aP
@@ -36755,12 +36332,12 @@ dZ
dZ
ie
iQ
-jU
+iK
dZ
hh
mV
rf
-Dk
+ng
hh
lm
lJ
@@ -36777,16 +36354,16 @@ ug
pB
qg
vK
-wo
-Xd
-wV
-wV
-wV
-wV
-wV
-wV
-yU
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
aP
aP
aP
@@ -36890,7 +36467,7 @@ aP
aP
dZ
ek
-fh
+fE
fE
gk
dZ
@@ -36912,23 +36489,23 @@ pC
qh
qU
rK
-sq
+rZ
sS
tC
uh
uH
vk
vL
-wo
-wX
-wV
-wV
-ys
-wV
-wV
-wV
-Hg
-wo
+yJ
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+eT
+yJ
aP
aP
aP
@@ -37062,15 +36639,15 @@ uI
tD
oY
oY
-wY
-wY
-wY
-wY
-wY
-wY
-wY
-wY
wo
+wo
+wo
+wo
+wo
+wo
+wo
+wo
+yJ
aP
aP
aP
@@ -37186,7 +36763,7 @@ kv
hA
ne
sV
-Dm
+nu
hA
Dt
nU
@@ -37466,11 +37043,11 @@ hG
ii
iV
ka
-kx
+jU
lS
nj
sV
-Dr
+Dq
DH
Dv
lJ
@@ -37765,7 +37342,7 @@ ac
ac
aa
oY
-sX
+Ei
sX
oY
uN
@@ -37891,12 +37468,12 @@ dZ
dZ
ij
iW
-kc
+jm
dZ
hl
np
xX
-Dz
+nv
hl
ac
ac
diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm
index 86d22f4719..10c16b0e97 100644
--- a/maps/tether/tether-07-station3.dmm
+++ b/maps/tether/tether-07-station3.dmm
@@ -167,12 +167,21 @@
/turf/simulated/floor/tiled,
/area/security/briefing_room)
"ar" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Head of Security"
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8;
+ icon_state = "map"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "dist_aux_meter";
+ name = "Distribution Loop"
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
"as" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_security{
@@ -225,20 +234,19 @@
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hos)
"aw" = (
-/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
- },
-/obj/item/device/radio/intercom/department/security{
- dir = 4;
- icon_state = "secintercom";
- pixel_x = 24;
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
pixel_y = 0
},
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/security/eva)
"ax" = (
/obj/machinery/access_button{
command = "cycle_interior";
@@ -384,14 +392,15 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"aH" = (
-/obj/machinery/camera/network/security{
- dir = 1
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
"aI" = (
/turf/simulated/wall,
/area/maintenance/station/sec_upper)
@@ -653,20 +662,20 @@
/turf/simulated/floor/tiled/dark,
/area/security/range)
"bb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
+/obj/machinery/door/window/northright,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_state = "secintercom";
+ pixel_x = 24;
+ pixel_y = 0
},
-/obj/machinery/meter{
- frequency = 1443;
- id = "dist_aux_meter";
- name = "Distribution Loop"
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
},
-/obj/machinery/camera/network/engineering{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
"bc" = (
/turf/simulated/wall,
/area/security/eva)
@@ -689,6 +698,10 @@
/obj/effect/floor_decal/borderfloorblack/corner2{
dir = 1
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled/dark,
/area/security/armory/red)
"bh" = (
@@ -704,6 +717,10 @@
/obj/effect/floor_decal/borderfloorblack/corner2{
dir = 4
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/security/armory/red)
"bj" = (
@@ -759,10 +776,6 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 4
- },
/obj/machinery/light_switch{
dir = 4;
icon_state = "light1";
@@ -992,6 +1005,7 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/camera/network/engineering,
/turf/simulated/floor,
/area/maintenance/substation/security)
"bB" = (
@@ -1128,16 +1142,15 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"bL" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallwayaux)
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration)
"bM" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -1205,20 +1218,23 @@
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
"bS" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/machinery/photocopier,
-/obj/machinery/camera/network/security,
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/machinery/button/remote/blast_door{
+ id = "armoryred";
+ name = "Red Armory Access";
+ pixel_x = 8;
+ pixel_y = -24;
+ req_access = list(3)
},
/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/area/security/armory/red)
"bT" = (
/obj/structure/table/steel,
/obj/machinery/cell_charger,
@@ -1505,6 +1521,10 @@
"cm" = (
/obj/effect/floor_decal/borderfloorblack/full,
/obj/structure/closet/bombcloset/double,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
"cn" = (
@@ -1541,15 +1561,11 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"cp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/camera/network/exploration,
-/turf/simulated/floor/tiled/monotile,
-/area/tether/exploration)
+/turf/simulated/floor/tiled,
+/area/security/eva)
"cq" = (
/obj/random/trash_pile,
/obj/effect/decal/cleanable/cobweb{
@@ -2103,12 +2119,15 @@
/turf/simulated/floor/carpet,
/area/security/breakroom)
"du" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/effect/landmark{
+ name = "tripai"
},
-/obj/machinery/disposal,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
"dv" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -2416,13 +2435,19 @@
/turf/simulated/floor,
/area/maintenance/cargo)
"dU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/network/exploration{
- dir = 4
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
},
-/turf/simulated/floor/tiled/monotile,
-/area/tether/exploration)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/photocopier,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
"dV" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/ai)
@@ -2599,16 +2624,8 @@
"ej" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/camera/network/security{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
@@ -2639,25 +2656,51 @@
/turf/simulated/floor/wood,
/area/security/breakroom)
"em" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/network/exploration{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 2;
+/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/monotile,
-/area/tether/exploration)
+/turf/simulated/floor/bluegrid,
+/area/ai)
"en" = (
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/stunshells{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/flashshells{
+ pixel_x = 1;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box/beanbags{
+ pixel_x = 4;
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "armoryblue";
+ name = "Blue Armory Access";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
"eo" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -2684,10 +2727,18 @@
/turf/simulated/floor/tiled/dark,
/area/security/security_lockerroom)
"er" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/excursion/tether)
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
"es" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/railing{
@@ -2798,6 +2849,10 @@
dir = 8
},
/obj/machinery/vending/snack,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"eB" = (
@@ -3542,37 +3597,17 @@
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
"fJ" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
},
-/obj/effect/floor_decal/corner/white/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- icon_state = "bordercolorcorner2";
- dir = 5
- },
-/obj/structure/table/reinforced,
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/camera/network/security,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
"fK" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -3719,32 +3754,11 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"fU" = (
-/obj/machinery/camera/network/tether,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
+/turf/simulated/floor/bluegrid,
+/area/ai)
"fV" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -3842,6 +3856,10 @@
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/white/border,
/obj/machinery/dnaforensics,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled/white,
/area/security/forensics)
"gd" = (
@@ -4307,16 +4325,14 @@
/turf/simulated/floor/tiled,
/area/security/eva)
"gX" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/structure/table/reinforced,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/security/eva)
"gY" = (
@@ -4371,16 +4387,13 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/shuttle/excursion/tether)
"hd" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Security"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/table/rack/steel,
/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
"he" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -4601,12 +4614,19 @@
/area/security/armory/blue)
"hC" = (
/obj/effect/floor_decal/borderfloorblack{
- dir = 6
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
},
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/structure/table/rack/shelf/steel,
/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/area/security/security_equiptment_storage)
"hD" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 10
@@ -4675,26 +4695,31 @@
/turf/simulated/floor/tiled/dark,
/area/security/armory/red)
"hH" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/structure/table/steel,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/camera/network/security{
dir = 1
},
-/obj/machinery/button/remote/blast_door{
- id = "armoryred";
- name = "Red Armory Access";
- pixel_x = 8;
- pixel_y = -24;
- req_access = list(3)
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -32
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/item/device/megaphone,
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/red/border/shifted,
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled,
+/area/security/observation)
"hI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -4779,21 +4804,46 @@
/turf/simulated/floor/tiled,
/area/security/eva)
"hQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/suit_cycler/security,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/security/eva)
"hR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/obj/machinery/camera/network/command,
-/turf/simulated/floor/bluegrid,
-/area/ai)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
"hS" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -4949,6 +4999,7 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/camera/network/command,
/turf/simulated/floor/bluegrid,
/area/ai)
"id" = (
@@ -5110,6 +5161,10 @@
name = "RED ARMORY";
pixel_y = 32
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled/dark,
/area/security/warden)
"ik" = (
@@ -5238,6 +5293,10 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"iq" = (
@@ -5709,13 +5768,10 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"iS" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallwayaux)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/weapon/bone/skull/unathi,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
"iT" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -5994,46 +6050,21 @@
/area/security/armory/blue)
"jv" = (
/obj/effect/floor_decal/borderfloorblack{
- dir = 4
+ dir = 5
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
},
/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
+ dir = 4
},
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 5
- },
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/stunshells{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/flashshells{
- pixel_x = 1;
- pixel_y = 0
- },
-/obj/item/weapon/storage/box/beanbags{
- pixel_x = 4;
- pixel_y = -5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
- },
-/obj/machinery/button/remote/blast_door{
- id = "armoryblue";
- name = "Blue Armory Access";
- pixel_x = 24;
- pixel_y = -8;
- req_access = list(3)
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
},
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/area/security/security_lockerroom)
"jw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -6874,20 +6905,15 @@
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
"kK" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
+/obj/effect/landmark{
+ name = "tripai"
},
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/flashbangs{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/machinery/camera/network/security{
+/obj/machinery/camera/network/command{
icon_state = "camera";
- dir = 4
+ dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
+/turf/simulated/floor/bluegrid,
+/area/ai)
"kL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -6927,59 +6953,27 @@
/turf/simulated/floor/tiled,
/area/security/observation)
"kO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/obj/item/device/megaphone,
-/obj/effect/floor_decal/borderfloor/shifted,
-/obj/effect/floor_decal/corner/red/border/shifted,
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled,
-/area/security/observation)
-"kP" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/network/security{
- icon_state = "camera";
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/machinery/firealarm{
+/obj/item/device/radio/intercom/department/security{
dir = 4;
- pixel_x = 24
+ icon_state = "secintercom";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"kP" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/item/device/radio/intercom/department/security{
+ dir = 2;
+ icon_state = "secintercom";
+ pixel_y = -24
},
/turf/simulated/floor/tiled,
-/area/security/hallwayaux)
+/area/security/briefing_room)
"kQ" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4
@@ -6997,11 +6991,15 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/shuttle/excursion/tether)
"kS" = (
-/obj/effect/landmark{
- name = "tripai"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/ai)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/exploration,
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration)
"kT" = (
/obj/effect/floor_decal/techfloor,
/obj/effect/floor_decal/techfloor{
@@ -7657,6 +7655,10 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/bluegrid,
/area/ai)
"lT" = (
@@ -7680,14 +7682,33 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/ai)
"lU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/machinery/camera/network/command{
- dir = 1
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/turf/simulated/floor/bluegrid,
-/area/ai)
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
"lV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -7886,21 +7907,21 @@
/area/security/security_lockerroom)
"mg" = (
/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
+ dir = 8
},
/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
+ icon_state = "borderfloorcorner2_black";
+ dir = 8
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
},
-/obj/structure/closet/wardrobe/red,
-/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
+/area/security/evidence_storage)
"mh" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -8031,13 +8052,14 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"mu" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 5
+ },
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"mv" = (
@@ -8160,17 +8182,36 @@
/turf/simulated/floor,
/area/security/forensics)
"mG" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
/obj/structure/window/reinforced{
- dir = 8
+ dir = 4
},
-/turf/simulated/open,
-/area/security/hallway)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 5
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
"mH" = (
/turf/simulated/wall/r_wall,
/area/security/hallway)
@@ -8509,16 +8550,10 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"nh" = (
-/obj/structure/table/standard,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/folder/yellow,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/excursion/tether)
"ni" = (
/obj/structure/bookcase,
/obj/item/weapon/book/manual/security_space_law,
@@ -8716,11 +8751,36 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"nA" = (
-/obj/machinery/camera/network/exploration{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/turf/simulated/floor/tiled/monotile,
-/area/tether/exploration)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ icon_state = "extinguisher_closed";
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"nB" = (
/obj/structure/cable/green{
d1 = 1;
@@ -8808,21 +8868,27 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
"nG" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/item/device/radio/intercom/department/security{
- dir = 4;
- icon_state = "secintercom";
- pixel_x = 24;
- pixel_y = 0
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28
},
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "0-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
"nH" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -9343,6 +9409,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/computer/secure_data,
+/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled,
/area/security/security_processing)
"oD" = (
@@ -9440,18 +9507,20 @@
/turf/simulated/floor/tiled,
/area/security/briefing_room)
"oK" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/item/device/radio/intercom/department/security{
- dir = 2;
- icon_state = "secintercom";
- pixel_y = -24
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/machinery/camera/network/security{
- dir = 1
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/folder/yellow,
+/obj/machinery/camera/network/cargo{
+ dir = 1;
+ name = "security camera"
},
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
+/area/quartermaster/storage)
"oL" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -9838,37 +9907,18 @@
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
"pl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/camera/network/security{
- icon_state = "camera";
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table/steel,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/folder/red{
- pixel_x = 2;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/recharger,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/brown/bordercorner2,
/turf/simulated/floor/tiled,
-/area/security/security_processing)
+/area/quartermaster/office)
"pm" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -10089,11 +10139,22 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"pH" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"pI" = (
@@ -10315,22 +10376,16 @@
/turf/simulated/floor,
/area/security/detectives_office)
"qg" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- icon_state = "borderfloorcorner2_black";
- dir = 8
+/obj/item/device/radio/intercom/department/security{
+ pixel_y = -24
},
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
"qh" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -10761,40 +10816,17 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"qS" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 9
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
+/obj/structure/closet/lawcloset,
/obj/machinery/camera/network/security{
icon_state = "camera";
- dir = 8
+ dir = 5
},
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- icon_state = "extinguisher_closed";
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
"qT" = (
/turf/simulated/floor,
/area/maintenance/station/elevator)
@@ -10839,18 +10871,16 @@
/turf/simulated/floor,
/area/quartermaster/delivery)
"qZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
+/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloor{
- dir = 9
+ dir = 5
},
/obj/effect/floor_decal/corner/brown/border{
- dir = 9
+ dir = 5
},
+/obj/machinery/camera/network/cargo,
/turf/simulated/floor/tiled,
-/area/quartermaster/delivery)
+/area/quartermaster/office)
"ra" = (
/obj/structure/disposalpipe/sortjunction/untagged/flipped{
dir = 1
@@ -11388,28 +11418,20 @@
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"rM" = (
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 5
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/structure/cable/green{
- icon_state = "0-8"
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
},
-/obj/machinery/camera/network/cargo,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/delivery)
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
"rN" = (
/obj/structure/cable/green{
d1 = 4;
@@ -11569,16 +11591,19 @@
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"rY" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/machinery/camera/network/cargo,
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
/obj/effect/floor_decal/borderfloor{
- dir = 5
+ dir = 6
},
/obj/effect/floor_decal/corner/brown/border{
- dir = 5
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/quartermaster/office)
+/area/quartermaster/delivery)
"rZ" = (
/obj/structure/noticeboard,
/turf/simulated/wall,
@@ -11958,6 +11983,10 @@
/obj/effect/floor_decal/corner/brown/bordercorner2{
dir = 9
},
+/obj/machinery/camera/network/cargo{
+ dir = 1;
+ name = "security camera"
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"sD" = (
@@ -11979,22 +12008,28 @@
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"sE" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/structure/bed/chair{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/camera/network/cargo{
- dir = 1;
- name = "security camera"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/brown/bordercorner2,
/turf/simulated/floor/tiled,
-/area/quartermaster/office)
+/area/quartermaster/foyer)
"sF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12225,6 +12260,7 @@
icon_state = "pipe-j1";
dir = 4
},
+/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled,
/area/security/hallway)
"sY" = (
@@ -12292,25 +12328,12 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"tb" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
+/turf/simulated/mineral/floor/vacuum,
+/area/security/nuke_storage)
"tc" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
@@ -12617,6 +12640,9 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 9
},
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"tu" = (
@@ -13835,17 +13861,24 @@
/turf/simulated/wall,
/area/lawoffice)
"vv" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 9
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
},
-/obj/structure/closet/lawcloset,
-/obj/machinery/camera/network/security{
- icon_state = "camera";
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
"vw" = (
/obj/effect/floor_decal/spline/plain{
icon_state = "spline_plain";
@@ -13964,20 +13997,17 @@
/turf/simulated/floor/tiled/dark,
/area/lawoffice)
"vD" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/turf/simulated/floor/tiled,
+/area/security/lobby)
"vE" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -14030,6 +14060,10 @@
dir = 5
},
/obj/machinery/computer/security,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/security/lobby)
"vH" = (
@@ -14219,23 +14253,37 @@
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"vY" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/camera/network/cargo{
- dir = 1;
- name = "security camera"
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27;
+ pixel_y = 0
},
/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 6
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/quartermaster/delivery)
+/area/hallway/station/upper)
"vZ" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
@@ -14511,31 +14559,18 @@
/turf/simulated/open,
/area/tether/exploration)
"wF" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
},
-/obj/machinery/camera/network/tether{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/effect/floor_decal/corner/lightgrey{
dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/structure/bed/chair{
- dir = 4
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/quartermaster/foyer)
+/area/hallway/station/upper)
"wG" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -14584,11 +14619,16 @@
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"wL" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior South"
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
},
-/turf/simulated/mineral/floor/vacuum,
-/area/security/nuke_storage)
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
"wM" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/table/reinforced,
@@ -14788,25 +14828,25 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"xc" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
},
-/obj/machinery/camera/network/tether,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
+/area/quartermaster/office)
"xd" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -14884,17 +14924,11 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"xg" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/structure/table/bench/wooden,
+/obj/machinery/camera/network/tether{
dir = 1
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/wood,
/area/hallway/station/upper)
"xh" = (
/obj/structure/sign/directions/cargo{
@@ -15122,12 +15156,24 @@
/turf/simulated/wall/r_wall,
/area/security/nuke_storage)
"xx" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior North";
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/turf/simulated/mineral/floor/vacuum,
-/area/security/nuke_storage)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
"xy" = (
/obj/effect/floor_decal/spline/plain{
icon_state = "spline_plain";
@@ -15317,21 +15363,31 @@
/turf/simulated/floor/tiled,
/area/security/lobby)
"xM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
},
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/security/lobby)
+/area/hallway/station/upper)
"xN" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor/glass,
@@ -15357,40 +15413,14 @@
/turf/simulated/floor,
/area/maintenance/station/elevator)
"xP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/machinery/camera/network/tether{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
+/obj/item/device/megaphone,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
"xQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15830,19 +15860,12 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"yB" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/machinery/camera/network/tether,
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
+/turf/space,
+/area/security/nuke_storage)
"yC" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 6
@@ -16069,19 +16092,15 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"yR" = (
-/obj/machinery/camera/network/tether{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/foyer)
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
"yS" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
@@ -16149,26 +16168,19 @@
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"yY" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/effect/floor_decal/borderfloor{
- dir = 6
+ dir = 9
},
/obj/effect/floor_decal/corner/brown/border{
- dir = 6
+ dir = 9
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 6
- },
-/obj/structure/closet/emcloset,
+/obj/machinery/camera/network/cargo,
/turf/simulated/floor/tiled,
-/area/quartermaster/foyer)
+/area/quartermaster/delivery)
"yZ" = (
/obj/machinery/door/airlock/glass_mining{
id_tag = "cargodoor";
@@ -16198,20 +16210,15 @@
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"zb" = (
-/obj/structure/table/standard,
-/obj/machinery/light_switch{
- pixel_x = -12;
- pixel_y = -24
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
},
-/obj/item/device/retail_scanner/civilian{
- dir = 1
+/obj/machinery/camera/network/cargo{
+ dir = 4
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/brown/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/quartermaster/office)
+/turf/simulated/floor,
+/area/quartermaster/delivery)
"zc" = (
/obj/structure/table/standard,
/obj/item/weapon/hand_labeler,
@@ -16789,23 +16796,24 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"zX" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 21
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 2;
+ pixel_y = -24
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"zY" = (
@@ -17233,6 +17241,10 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 5
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
"AA" = (
@@ -17360,15 +17372,16 @@
/turf/simulated/floor/wood,
/area/quartermaster/qm)
"AK" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/device/megaphone,
-/obj/machinery/camera/network/cargo,
-/turf/simulated/floor/wood,
-/area/quartermaster/qm)
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"AL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -17514,14 +17527,11 @@
/area/medical/reception)
"Ba" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+ dir = 1
},
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/tether/station/stairs_three)
"Bb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -17957,6 +17967,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/medical/medbay_emt_bay)
"BC" = (
@@ -18035,20 +18049,18 @@
/turf/simulated/floor/tiled,
/area/maintenance/station/cargo)
"BL" = (
-/obj/structure/bed/chair{
- dir = 4
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "cargo_bay";
+ layer = 3.3;
+ name = "cargo bay hatch controller";
+ pixel_x = 30;
+ pixel_y = 0;
+ req_one_access = list(13,31);
+ tag_door = "cargo_bay_door"
},
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
"BM" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -18098,12 +18110,24 @@
/turf/simulated/floor/wood,
/area/quartermaster/qm)
"BQ" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/camera/network/cargo{
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
"BR" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
@@ -18270,29 +18294,15 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"Cg" = (
-/obj/machinery/camera/network/tether{
- dir = 1
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
- dir = 9
- },
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
},
/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
+/area/quartermaster/warehouse)
"Ch" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
@@ -18937,27 +18947,26 @@
/turf/simulated/wall,
/area/medical/reception)
"Dm" = (
-/obj/structure/table/reinforced,
-/obj/machinery/reagentgrinder,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/table/rack,
+/obj/item/device/defib_kit/compact/loaded,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-/obj/machinery/camera/network/medbay{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
"Dn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
@@ -19165,17 +19174,26 @@
/turf/simulated/floor/tiled,
/area/teleporter/departing)
"DF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/cups,
+/obj/item/weapon/storage/box/cups{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/effect/floor_decal/corner_steel_grid{
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
dir = 10
},
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
"DG" = (
/obj/structure/cable{
d1 = 4;
@@ -19240,6 +19258,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/station/stairs_three)
"DL" = (
@@ -19399,6 +19420,9 @@
icon_state = "0-2"
},
/obj/structure/cable/green,
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
"DV" = (
@@ -19656,11 +19680,15 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"Ep" = (
-/obj/structure/table/standard,
-/obj/machinery/photocopier/faxmachine{
- department = "Quartermaster-Office"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/floor/wood,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/toy/plushie/squid/blue,
+/obj/machinery/camera/network/cargo,
+/turf/simulated/floor/outdoors/grass/forest,
/area/quartermaster/qm)
"Eq" = (
/obj/structure/table/standard,
@@ -19799,29 +19827,30 @@
/turf/simulated/floor/tiled,
/area/tether/station/stairs_three)
"EF" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/machinery/button/remote/blast_door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -26;
+ pixel_y = 0;
+ req_access = list(31)
},
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
-/area/tether/station/stairs_three)
+/area/quartermaster/storage)
"EG" = (
-/obj/structure/table/woodentable,
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/machinery/camera/network/security{
+/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
-/obj/item/device/radio/intercom/department/security{
- pixel_y = -24
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
"EH" = (
/obj/structure/window/reinforced{
dir = 8
@@ -20160,29 +20189,16 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"Fi" = (
-/obj/structure/table/rack,
-/obj/item/device/defib_kit/compact/loaded,
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/cmo)
"Fj" = (
/turf/simulated/wall,
/area/quartermaster/warehouse)
@@ -20229,22 +20245,12 @@
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"Fm" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- frequency = 1380;
- id_tag = "cargo_bay";
- layer = 3.3;
- name = "cargo bay hatch controller";
- pixel_x = 30;
- pixel_y = 0;
- req_one_access = list(13,31);
- tag_door = "cargo_bay_door"
- },
-/obj/machinery/camera/network/cargo{
- c_tag = "CRG - Cargo Bay East";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
"Fn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -20748,19 +20754,17 @@
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
"Gc" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/item/weapon/tool/screwdriver,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
},
-/obj/machinery/camera/network/cargo{
- c_tag = "CRG - Cargo Warehouse";
- dir = 9
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/warehouse)
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
"Gd" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/vehicle/train/trolley,
@@ -20793,6 +20797,9 @@
/area/teleporter/departing)
"Gh" = (
/obj/effect/floor_decal/techfloor/orange,
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/teleporter/departing)
"Gi" = (
@@ -20882,17 +20889,23 @@
/area/medical/reception)
"Gp" = (
/obj/structure/table/glass,
-/obj/item/weapon/storage/box/cups,
-/obj/item/weapon/storage/box/cups{
- pixel_x = 4;
- pixel_y = 4
+/obj/item/weapon/storage/box/body_record_disk,
+/obj/item/device/sleevemate,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing.";
+ name = "Body Designer Note"
},
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 9
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
},
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
dir = 9
},
/turf/simulated/floor/tiled/white,
@@ -21019,27 +21032,22 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"Gx" = (
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
/obj/structure/table/glass,
-/obj/item/weapon/storage/box/body_record_disk,
-/obj/item/device/sleevemate,
-/obj/item/weapon/paper{
- desc = "";
- info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing.";
- name = "Body Designer Note"
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
+ dir = 4
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
+ dir = 4
},
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled/white,
-/area/medical/reception)
+/area/medical/sleeper)
"Gy" = (
/obj/machinery/power/apc{
dir = 2;
@@ -21234,29 +21242,10 @@
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
"GN" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/machinery/camera/network/cargo{
- c_tag = "CRG - Cargo Office South";
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/quartermaster/office)
+/obj/structure/flora/pottedplant,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/medbreak)
"GO" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -21950,22 +21939,32 @@
pixel_x = 0;
pixel_y = 32
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"HL" = (
-/obj/machinery/camera/network/medbay,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
},
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"HM" = (
@@ -22063,6 +22062,10 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
"HU" = (
@@ -22721,6 +22724,9 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
/turf/simulated/floor,
/area/maintenance/substation/cargo)
"IQ" = (
@@ -22758,18 +22764,12 @@
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
"IU" = (
-/obj/machinery/button/remote/blast_door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -26;
- pixel_y = 0;
- req_access = list(31)
- },
-/obj/machinery/camera/network/cargo{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
"IV" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
@@ -22909,15 +22909,21 @@
/turf/simulated/floor/wood,
/area/crew_quarters/heads/cmo)
"Jk" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
},
/obj/machinery/camera/network/medbay{
- dir = 8
+ icon_state = "camera";
+ dir = 9
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/escape/medical_escape_pod_hallway)
"Jl" = (
/obj/structure/cable/green{
d1 = 1;
@@ -23113,6 +23119,10 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"JE" = (
@@ -23423,15 +23433,19 @@
/turf/simulated/floor/tiled/white,
/area/medical/virologyaccess)
"Kc" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/item/weapon/soap/nanotrasen,
-/obj/machinery/camera/network/medbay{
- dir = 1
+/obj/structure/closet/wardrobe/virology_white,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
},
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
-/area/medical/medbay_primary_storage)
+/area/medical/virologyaccess)
"Kd" = (
/obj/structure/closet/secure_closet/medical3,
/obj/item/weapon/soap/nanotrasen,
@@ -23480,20 +23494,10 @@
/turf/simulated/open,
/area/medical/medbay_primary_storage)
"Kj" = (
-/obj/structure/table/glass,
-/obj/machinery/recharger,
-/obj/item/weapon/tool/screwdriver,
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
+/area/crew_quarters/medbreak)
"Kk" = (
/obj/structure/cable/green{
d1 = 1;
@@ -23562,32 +23566,30 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"Kq" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior West";
- dir = 8
- },
-/turf/space,
+/obj/machinery/camera/network/security,
+/turf/simulated/mineral/floor/vacuum,
/area/security/nuke_storage)
"Kr" = (
-/obj/item/roller,
-/obj/item/roller{
- pixel_y = 8
- },
-/obj/item/roller{
- pixel_y = 16
- },
-/obj/structure/table/glass,
-/obj/machinery/camera/network/medbay{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"Ks" = (
/obj/structure/table/glass,
/obj/item/bodybag/cryobag,
@@ -24014,11 +24016,12 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"Lf" = (
-/obj/structure/flora/pottedplant,
-/obj/machinery/camera/network/medbay,
-/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/medbreak)
+/area/medical/virology)
"Lg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -24377,30 +24380,10 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"LS" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
+/obj/machinery/camera/network/security,
+/mob/living/simple_mob/animal/sif/shantak/scruffy,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
"LT" = (
/obj/effect/landmark/start{
name = "Paramedic"
@@ -25302,15 +25285,16 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"Ne" = (
-/obj/machinery/camera/network/medbay{
- dir = 1
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/virusdish/random,
+/obj/item/weapon/virusdish/random,
+/obj/item/weapon/virusdish/random,
+/obj/item/weapon/virusdish/random,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
},
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
+/area/medical/virology)
"Nf" = (
/obj/structure/bed/chair{
dir = 1
@@ -25368,20 +25352,21 @@
/turf/simulated/floor/tiled/white,
/area/hallway/secondary/escape/medical_escape_pod_hallway)
"Nk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/white,
-/area/hallway/secondary/escape/medical_escape_pod_hallway)
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration)
"Nl" = (
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medical_restroom)
@@ -25407,16 +25392,29 @@
/obj/structure/table/standard,
/obj/item/weapon/storage/box/cups,
/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
"Np" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
+/obj/structure/closet/secure_closet/detective,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/device/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1/station)
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
"Nq" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/donkpockets,
@@ -25585,20 +25583,41 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"NE" = (
-/obj/structure/closet/wardrobe/virology_white,
-/obj/machinery/firealarm{
+/obj/effect/floor_decal/borderfloor{
dir = 4;
- pixel_x = 24
+ pixel_x = -16
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4;
+ pixel_x = -16
},
-/obj/machinery/camera/network/medbay,
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
},
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
+/obj/structure/table/steel,
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = -9
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"NF" = (
/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
frequency = 1380;
@@ -25645,12 +25664,14 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
"NI" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1/station)
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
"NJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/universal{
dir = 4
@@ -25717,24 +25738,29 @@
/turf/simulated/floor/tiled/white,
/area/medical/virologyaccess)
"NQ" = (
-/obj/structure/closet/l3closet/virology,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -8;
- pixel_y = -28;
- req_access = list(39)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/light{
- dir = 4
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 6
},
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 6
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
"NR" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -25789,13 +25815,30 @@
/turf/simulated/floor/tiled/white,
/area/medical/virologyaccess)
"NY" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1/station)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
"NZ" = (
/obj/structure/shuttle/engine/heater{
dir = 8
@@ -25966,14 +26009,27 @@
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"Or" = (
-/obj/machinery/disease2/diseaseanalyser,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -8;
+ pixel_y = -28;
+ req_access = list(39)
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/medical/virology)
+/area/medical/virologyaccess)
"Os" = (
/obj/structure/window/reinforced{
dir = 8
@@ -26217,18 +26273,23 @@
dir = 8
},
/obj/machinery/disposal,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
"OQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/camera/network/medbay{
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
+/obj/machinery/disposal,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/security/breakroom)
"OR" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/fancy/vials,
@@ -26287,6 +26348,15 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/virology)
+"OW" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
"OX" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -26298,14 +26368,12 @@
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
"OY" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = -28
+/obj/machinery/camera/network/cargo{
+ icon_state = "camera";
+ dir = 8
},
-/obj/structure/table/glass,
-/obj/item/weapon/storage/lockbox/vials,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
"OZ" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -26509,6 +26577,21 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/virology)
+"Pq" = (
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/open,
+/area/security/hallway)
+"Pr" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/camera/network/command{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_core_foyer)
"Ps" = (
/obj/machinery/atmospherics/tvalve/bypass,
/obj/machinery/light{
@@ -26519,6 +26602,18 @@
},
/turf/simulated/floor/plating,
/area/medical/virology)
+"Pt" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
"Pu" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/monkeycubes,
@@ -26548,26 +26643,22 @@
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"Pw" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/virusdish/random,
-/obj/item/weapon/virusdish/random,
-/obj/item/weapon/virusdish/random,
-/obj/item/weapon/virusdish/random,
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
+/obj/machinery/disease2/diseaseanalyser,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
+/obj/machinery/camera/network/medbay,
/turf/simulated/floor/tiled/white,
/area/medical/virology)
"Px" = (
-/obj/machinery/smartfridge/secure/virology,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
dir = 5
},
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration)
"Py" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 4
@@ -26612,15 +26703,16 @@
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
"PD" = (
-/obj/structure/reagent_dispensers/water_cooler/full,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/machinery/smartfridge/secure/virology,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
},
/obj/machinery/camera/network/medbay{
- dir = 4
+ icon_state = "camera";
+ dir = 9
},
/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
+/area/medical/virology)
"PE" = (
/obj/structure/cable/green{
d1 = 1;
@@ -26679,6 +26771,17 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/virologyisolation)
+"PI" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"PJ" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/green,
@@ -26814,18 +26917,168 @@
/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled/white,
/area/medical/virologyisolation)
+"PZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration)
"Qa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/virologyisolation)
+"Qb" = (
+/obj/machinery/camera/network/exploration{
+ icon_state = "camera";
+ dir = 9
+ },
+/turf/simulated/open,
+/area/tether/exploration)
+"Qc" = (
+/obj/structure/table/standard,
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/obj/item/device/retail_scanner/civilian{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/brown/bordercorner2,
+/obj/machinery/camera/network/cargo{
+ dir = 1;
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"Qd" = (
+/obj/structure/table/standard,
+/obj/machinery/photocopier/faxmachine{
+ department = "Quartermaster-Office"
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"Qe" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad"
+ },
+/obj/machinery/camera/network/cargo{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/quartermaster/storage)
"Qf" = (
/obj/structure/toilet{
pixel_y = 15
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medical_restroom)
+"Qg" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/camera/network/cargo{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Qh" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1/station)
+"Qi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/camera/network/tether,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Qj" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Qk" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Ql" = (
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/open,
+/area/security/brig)
+"Qm" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1/station)
+"Qn" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1/station)
+"Qo" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = -28
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/lockbox/vials,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/camera/network/medbay{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"Qr" = (
/obj/machinery/shower{
pixel_y = 10
@@ -27026,13 +27279,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
-"QZ" = (
-/obj/effect/floor_decal/techfloor,
-/obj/machinery/camera/network/command{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ai_core_foyer)
"Ra" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -27120,22 +27366,6 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"Rl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/machinery/suit_cycler/security,
-/turf/simulated/floor/tiled,
-/area/security/eva)
"Rm" = (
/obj/effect/floor_decal/techfloor{
dir = 6
@@ -27808,38 +28038,6 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"SJ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4;
- pixel_x = -16
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4;
- pixel_x = -16
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/table/steel,
-/obj/item/bodybag/cryobag{
- pixel_x = 6
- },
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32;
- pixel_y = -9
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32;
- pixel_y = 2
- },
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
"SK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -28028,16 +28226,6 @@
},
/turf/simulated/floor/tiled,
/area/shuttle/excursion/tether)
-"Tv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/toy/plushie/squid/blue,
-/turf/simulated/floor/outdoors/grass/forest,
-/area/quartermaster/qm)
"TD" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -28488,13 +28676,6 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/shuttle/excursion/tether)
-"Vb" = (
-/obj/machinery/camera/network/exploration{
- dir = 1
- },
-/obj/structure/stasis_cage,
-/turf/simulated/floor/tiled/monotile,
-/area/tether/exploration)
"Vd" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
@@ -28735,15 +28916,6 @@
"VM" = (
/turf/simulated/open,
/area/ai_core_foyer)
-"VN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/network/security{
- icon_state = "camera";
- dir = 8
- },
-/obj/item/weapon/bone/skull/unathi,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"VQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 8;
@@ -28888,14 +29060,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/shuttle/excursion/tether)
-"Wz" = (
-/obj/machinery/vending/cola,
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/medbreak)
"WB" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -29152,19 +29316,6 @@
},
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"XR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/network/exploration{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/monotile,
-/area/tether/exploration)
"XT" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -29224,18 +29375,6 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medical_restroom)
-"Yi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/monotile,
-/area/tether/exploration)
"Yj" = (
/obj/effect/floor_decal/industrial/warning{
dir = 10
@@ -29337,10 +29476,6 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/shuttle/excursion/tether)
-"YO" = (
-/mob/living/simple_mob/animal/sif/shantak/scruffy,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"YQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -33484,7 +33619,7 @@ aa
aa
ae
aa
-Kq
+yB
aa
ae
aa
@@ -33602,7 +33737,7 @@ aa
ab
ZF
je
-YO
+LS
WH
Uk
my
@@ -33745,7 +33880,7 @@ ab
ZF
je
Ui
-VN
+iS
TZ
Yu
Vp
@@ -33910,7 +34045,7 @@ xw
xw
ze
zS
-Ba
+yR
BV
CT
xw
@@ -34039,7 +34174,7 @@ ov
oZ
fr
qc
-fJ
+mG
rh
wS
sO
@@ -34047,7 +34182,7 @@ tJ
qc
vs
vt
-xx
+tb
xw
xw
zf
@@ -34057,7 +34192,7 @@ BW
CU
xw
xw
-wL
+Kq
vt
vt
vt
@@ -34315,7 +34450,7 @@ ab
ab
ab
je
-ar
+hd
WN
et
Yx
@@ -34459,7 +34594,7 @@ ab
je
kI
Uy
-nG
+kO
oa
ox
ff
@@ -34723,7 +34858,7 @@ ab
ab
ao
ao
-hd
+aH
hA
hS
ig
@@ -34737,7 +34872,7 @@ ja
kc
ko
tQ
-kK
+hC
kY
eT
mc
@@ -35008,14 +35143,14 @@ ai
ai
ao
hf
-hC
+fJ
bx
ii
bd
iN
jc
ji
-jv
+en
kd
jS
rA
@@ -35045,7 +35180,7 @@ nn
nn
vu
uO
-zX
+xx
Bi
Cb
sp
@@ -35179,9 +35314,9 @@ qG
ro
sj
sT
-EG
+qg
uJ
-vv
+qS
wg
wg
xy
@@ -35189,7 +35324,7 @@ yi
og
zY
Bj
-Ca
+Qk
Da
Da
Da
@@ -35450,7 +35585,7 @@ kC
fB
fY
eT
-mg
+jv
mD
nl
nM
@@ -35463,7 +35598,7 @@ qI
rm
sl
sR
-tN
+Np
uJ
vx
wh
@@ -35475,7 +35610,7 @@ Aa
Bl
SI
Da
-DF
+AK
EB
Fp
Gf
@@ -35599,7 +35734,7 @@ mh
mh
ep
pg
-pH
+pG
fH
qe
eO
@@ -35720,7 +35855,7 @@ gP
bZ
bv
dI
-bS
+dU
ez
bE
RB
@@ -35739,7 +35874,7 @@ dX
ew
lz
lz
-lz
+Kr
ph
pI
aA
@@ -36002,7 +36137,7 @@ gr
gE
gO
hi
-hH
+bS
dI
dI
bq
@@ -36011,7 +36146,7 @@ cd
dI
mv
dM
-ej
+er
cP
cP
jL
@@ -36019,7 +36154,7 @@ eD
cP
lB
lB
-mG
+lB
no
as
as
@@ -36157,7 +36292,7 @@ ek
cP
QV
kD
-kO
+hH
cP
lC
lC
@@ -36168,7 +36303,7 @@ nN
oz
pj
pJ
-qg
+mg
qK
rt
oz
@@ -36183,7 +36318,7 @@ yo
og
Af
Bp
-Cg
+zX
Df
Df
Df
@@ -36317,7 +36452,7 @@ fN
sZ
tW
uO
-vD
+rM
wi
wN
xG
@@ -36348,7 +36483,7 @@ MB
MS
No
Jm
-Wz
+Kj
KW
vt
vt
@@ -36470,7 +36605,7 @@ Br
Ci
Dh
DL
-EF
+Ba
Fu
Gk
Gk
@@ -36573,7 +36708,7 @@ ai
ai
ai
ai
-ci
+NY
iR
cg
jk
@@ -36598,7 +36733,7 @@ oA
oA
oA
oA
-tb
+pH
tT
uQ
vE
@@ -36623,7 +36758,7 @@ Hj
HV
ID
Jp
-Kc
+Fm
Jr
KZ
LE
@@ -36734,7 +36869,7 @@ jk
jk
lv
oB
-pl
+lU
pM
qh
fK
@@ -36755,7 +36890,7 @@ Ck
yl
Al
BE
-Dm
+BQ
Ef
EZ
FH
@@ -37000,7 +37135,7 @@ aC
aR
bf
bs
-bL
+ej
cf
cT
jy
@@ -37015,7 +37150,7 @@ jk
jk
jk
jk
-jk
+Ql
of
oD
pn
@@ -37319,7 +37454,7 @@ yu
zq
fT
kn
-Ck
+Qj
yJ
Az
BG
@@ -37335,7 +37470,7 @@ II
Ju
Ki
KG
-Lf
+GN
Ld
Mn
MI
@@ -37421,7 +37556,7 @@ gk
gf
gk
gR
-aw
+bb
aE
dQ
bf
@@ -37459,7 +37594,7 @@ wU
xL
yv
zq
-fU
+xM
kw
pN
yl
@@ -37606,7 +37741,7 @@ mX
pS
Dl
AA
-BL
+FK
Dq
Ek
Fe
@@ -37617,7 +37752,7 @@ HK
HZ
IK
Jv
-Kj
+Gc
KH
Li
LG
@@ -37719,7 +37854,7 @@ jU
cY
kr
kr
-kP
+hR
ld
lF
mk
@@ -37731,7 +37866,7 @@ oG
pq
pR
qm
-qS
+nA
rz
aL
ti
@@ -37740,7 +37875,7 @@ aN
vL
wq
wV
-xM
+vD
yx
yL
jf
@@ -37753,7 +37888,7 @@ Cl
El
Cl
Cl
-Gp
+DF
Iy
Hq
Lh
@@ -37773,11 +37908,11 @@ ab
NW
Ok
OA
-OQ
+Lf
NW
Ok
OA
-OQ
+Lf
NW
aa
aa
@@ -37872,12 +38007,12 @@ at
eX
pr
lC
-lC
+Pq
mH
rB
mH
tj
-SJ
+NE
mH
uP
uP
@@ -38002,7 +38137,7 @@ eJ
el
kh
kh
-du
+OQ
YT
dO
lG
@@ -38058,7 +38193,7 @@ Nr
Om
OC
OR
-OY
+Qo
Pf
OC
KA
@@ -38205,7 +38340,7 @@ Pg
Po
Pu
NW
-PD
+PI
PN
PS
PW
@@ -38278,7 +38413,7 @@ hM
aW
aU
iG
-iS
+NI
YT
jo
ds
@@ -38333,11 +38468,11 @@ LN
Jz
Mt
Lh
-Ne
+IU
Nt
-NE
+Kc
NK
-NQ
+Or
Nr
Oo
OE
@@ -38437,7 +38572,7 @@ lH
jh
lH
ok
-oK
+kP
le
mH
mH
@@ -38475,7 +38610,7 @@ LO
JA
Mu
Lh
-Nf
+Pt
Nr
Nr
Nr
@@ -38556,7 +38691,7 @@ ab
ab
ab
aU
-gX
+aw
hr
hM
aY
@@ -38593,7 +38728,7 @@ tn
tn
tn
sp
-yB
+wF
zw
Ar
Ax
@@ -38629,7 +38764,7 @@ OU
OE
Pl
NR
-Pw
+Ne
NW
PH
PQ
@@ -38701,7 +38836,7 @@ aU
bk
hr
hP
-Rl
+hQ
aU
iH
iT
@@ -38709,7 +38844,7 @@ YT
ni
dg
tP
-en
+eJ
eF
Xe
YH
@@ -38721,7 +38856,7 @@ mN
nt
nS
om
-oI
+OW
le
tl
tl
@@ -38765,13 +38900,13 @@ ab
ab
ab
NW
-Or
+Pw
OG
OV
Pd
Pm
Ps
-Px
+PD
NW
PJ
PR
@@ -38889,7 +39024,7 @@ Du
EJ
Fh
FP
-Gx
+Gp
Iy
HI
Ig
@@ -38981,7 +39116,7 @@ gg
gj
gl
gx
-bb
+ar
gY
hv
hP
@@ -39037,7 +39172,7 @@ HJ
Ih
Jb
JD
-Kr
+Gx
KO
Ll
LM
@@ -39171,7 +39306,7 @@ Bu
Cs
DM
EL
-Fi
+Dm
FQ
FQ
yT
@@ -39189,11 +39324,11 @@ MK
Iy
ab
NL
-Np
-NI
-NI
-NI
-NY
+Qh
+Qm
+Qm
+Qm
+Qn
NL
vt
vt
@@ -39268,7 +39403,7 @@ aU
aU
aU
ay
-aH
+cp
bm
bB
by
@@ -39317,7 +39452,7 @@ Ct
Ct
Gy
yT
-HL
+EG
Ij
Jd
JE
@@ -39410,7 +39545,7 @@ aa
bc
bJ
Ur
-hQ
+gX
bm
bm
bm
@@ -39444,7 +39579,7 @@ uY
uY
ww
wY
-xP
+vY
yG
zA
Av
@@ -39608,7 +39743,7 @@ JF
Kt
KQ
Lq
-LS
+HL
Iy
MK
MK
@@ -39867,7 +40002,7 @@ sq
tr
um
uZ
-uZ
+xg
wx
xb
xR
@@ -39977,21 +40112,21 @@ cC
cI
df
dm
-dU
cC
cC
cC
-df
+cC
+mu
dm
cI
cC
cC
cC
-dU
+cC
dm
lQ
lV
-mq
+Px
mq
be
es
@@ -40037,7 +40172,7 @@ Lt
LW
My
MM
-Nk
+Jk
Nv
NG
NM
@@ -40398,7 +40533,7 @@ aa
aa
aa
be
-bX
+kS
cE
cK
cK
@@ -40416,7 +40551,7 @@ Zy
WG
dj
XA
-er
+nh
ms
Oz
be
@@ -40437,7 +40572,7 @@ sq
sq
sq
sq
-xc
+vv
xS
fF
AH
@@ -40540,7 +40675,7 @@ aa
aa
aa
be
-cp
+bX
cE
cK
cK
@@ -40558,7 +40693,7 @@ UJ
Xb
dj
XN
-er
+nh
ms
Xq
be
@@ -40597,7 +40732,7 @@ GS
Hd
HR
IA
-Jk
+Fi
JS
Ky
Fz
@@ -40700,9 +40835,9 @@ iW
WS
dj
XN
-er
+nh
ms
-Vb
+Xq
be
os
oV
@@ -40983,7 +41118,7 @@ jZ
WR
Xo
XN
-er
+nh
cK
ms
Xq
@@ -41005,7 +41140,7 @@ qr
qr
qr
qr
-xg
+Qi
xR
yQ
zF
@@ -41141,7 +41276,7 @@ pX
qs
qY
rJ
-rJ
+zb
tu
ur
ve
@@ -41413,7 +41548,7 @@ dj
cK
ms
mq
-Ox
+Qb
Ox
Ox
be
@@ -41423,7 +41558,7 @@ iV
px
pt
qr
-qZ
+yY
rK
sw
sw
@@ -41551,7 +41686,7 @@ ea
kx
dj
XN
-er
+nh
cK
ms
mq
@@ -41575,10 +41710,10 @@ vW
wD
xk
xY
-yR
+wL
zJ
zL
-Tv
+Ep
Vl
TU
zL
@@ -41708,7 +41843,7 @@ iV
iV
qr
qr
-rM
+nG
sy
tx
uu
@@ -41836,9 +41971,9 @@ kQ
TG
dj
XN
-er
+nh
ms
-nA
+mq
be
oU
RV
@@ -41855,7 +41990,7 @@ sz
ty
uv
vi
-vY
+rY
wD
xm
ya
@@ -41865,7 +42000,7 @@ AJ
BM
CD
ZV
-Ep
+Qd
zL
Ee
EY
@@ -41960,7 +42095,7 @@ aa
aa
aa
be
-cp
+bX
cE
cK
cK
@@ -41978,7 +42113,7 @@ kR
Vd
dj
XN
-er
+nh
ms
QL
be
@@ -42003,7 +42138,7 @@ he
ht
hO
zL
-AK
+xP
BN
CE
Dv
@@ -42102,7 +42237,7 @@ aa
aa
aa
be
-bX
+kS
cE
cK
cK
@@ -42120,7 +42255,7 @@ ZE
ZB
dj
XB
-er
+nh
ms
Sq
be
@@ -42140,7 +42275,7 @@ qu
ux
vj
vj
-wF
+sE
xn
yb
yU
@@ -42293,7 +42428,7 @@ CG
CD
Es
zK
-Gc
+Cg
GJ
Hy
Mc
@@ -42533,21 +42668,21 @@ cC
dc
dl
dH
-em
+bL
Wk
Wk
Wk
-Yi
+Nk
VI
YQ
SK
Wk
Wk
-XR
+Wk
VI
YQ
lW
-mu
+PZ
nB
Ro
PP
@@ -42561,7 +42696,7 @@ sH
wb
wJ
xq
-sE
+pl
tA
uA
vk
@@ -42572,7 +42707,7 @@ ya
yX
zO
SD
-BQ
+Qg
CI
Dx
Et
@@ -42581,8 +42716,8 @@ Gd
GK
HA
Mg
-IU
-nh
+EF
+oK
zO
ab
ab
@@ -42711,7 +42846,7 @@ vZ
vZ
xo
yc
-yY
+NQ
zO
AP
BR
@@ -42995,7 +43130,7 @@ Ev
Fl
FE
GI
-GN
+xc
HC
In
Io
@@ -43110,7 +43245,7 @@ dV
Rx
fy
fy
-kS
+du
fy
fy
RI
@@ -43279,7 +43414,7 @@ wc
sJ
xs
yg
-zb
+Qc
qu
AT
BU
@@ -43412,7 +43547,7 @@ gJ
gJ
qu
qu
-rY
+qZ
rX
sJ
sJ
@@ -43533,7 +43668,7 @@ gK
gK
eI
fy
-hR
+em
jt
kl
kX
@@ -43708,15 +43843,15 @@ qu
qu
qu
AW
-BU
+OY
CO
DC
Ey
-Fm
+BL
Ge
GP
HF
-HF
+Qe
IY
zO
ab
@@ -43829,7 +43964,7 @@ mZ
Nw
Pe
QI
-QZ
+Pr
fP
gJ
gJ
@@ -43965,7 +44100,7 @@ jD
lk
jD
lN
-lU
+fU
fy
na
qa
@@ -44530,7 +44665,7 @@ aa
aa
fy
fy
-kS
+kK
fy
fy
ab
diff --git a/maps/tether/tether-09-solars.dmm b/maps/tether/tether-09-solars.dmm
index 09d6f78bbb..475200f36c 100644
--- a/maps/tether/tether-09-solars.dmm
+++ b/maps/tether/tether-09-solars.dmm
@@ -334,10 +334,17 @@
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
"aK" = (
-/obj/structure/cable/heavyduty{
- icon_state = "2-8"
- },
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Solar Farm Output";
+ name_tag = "Solar Farm Output"
+ },
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
"aL" = (
@@ -381,30 +388,6 @@
/obj/structure/cable/heavyduty,
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
-"aP" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Input";
- name_tag = "Solar Farm Input"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/outpost/solars_outside)
-"aQ" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Output";
- name_tag = "Solar Farm Output"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/outpost/solars_outside)
"aR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/solar_control,
@@ -513,6 +496,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Solar Farm Input";
+ name_tag = "Solar Farm Input"
+ },
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
"bd" = (
@@ -18860,7 +18851,7 @@ ad
ad
at
aI
-aP
+aW
aW
bc
bf
@@ -20564,7 +20555,7 @@ ad
ad
ad
aK
-aQ
+aX
aX
bl
bn
diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm
index 842fccffdb..648f11d584 100644
--- a/maps/tether/tether_areas.dm
+++ b/maps/tether/tether_areas.dm
@@ -46,19 +46,19 @@
/area/turbolift/t_surface/level2
name = "surface (level 2)"
lift_floor_label = "Surface 2"
- lift_floor_name = "Atmos, Maintenance"
+ lift_floor_name = "Atmos, Chapel, Maintenance"
lift_announce_str = "Arriving at Base Level 2."
/area/turbolift/t_surface/level3
name = "surface (level 3)"
lift_floor_label = "Surface 3"
- lift_floor_name = "Science, Bar, Pool"
+ lift_floor_name = "Bridge, Science, Bar, Pool"
lift_announce_str = "Arriving at Base Level 3."
/area/turbolift/t_station/level1
name = "asteroid (level 1)"
lift_floor_label = "Asteroid 1"
- lift_floor_name = "Eng, Bridge, Chapel, Park, Cryo"
+ lift_floor_name = "Eng, Secondary Bridge, Park, Cryo, Visitor Offices"
lift_announce_str = "Arriving at Station Level 1."
/area/turbolift/t_station/level2
diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm
index 36ba0a6428..7e30d2ff20 100644
--- a/maps/tether/tether_areas2.dm
+++ b/maps/tether/tether_areas2.dm
@@ -37,14 +37,14 @@
name = "\improper Tram Station"
icon_state = "dk_yellow"
-/area/tether/surfacebase/atrium_one
- name = "\improper Atrium First Floor"
+/area/tether/surfacebase/surface_one_hall
+ name = "\improper First Floor Hallway"
icon_state = "dk_yellow"
-/area/tether/surfacebase/atrium_two
- name = "\improper Atrium Second Floor"
+/area/tether/surfacebase/surface_two_hall
+ name = "\improper Second Floor Hallway"
icon_state = "dk_yellow"
-/area/tether/surfacebase/atrium_three
- name = "\improper Atrium Third Floor"
+/area/tether/surfacebase/surface_three_hall
+ name = "\improper Third Floor Hallway"
icon_state = "dk_yellow"
/area/tether/surfacebase/north_stairs_one
@@ -175,7 +175,8 @@
name = "\improper Exploration Substation"
/area/maintenance/tether_midpoint
name = "\improper Tether Midpoint Maint"
-
+/area/maintenance/commandmaint
+ name = "\improper Command Maintenance"
/area/tether/surfacebase/medical
icon_state = "medical"
@@ -667,6 +668,27 @@
icon_state = "dk_yellow"
flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/crew_quarters/sleep/spacedorm1
+ name = "\improper Visitor Lodging 1"
+ icon_state = "dk_yellow"
+ lightswitch = 0
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/crew_quarters/sleep/spacedorm2
+ name = "\improper Visitor Lodging 2"
+ icon_state = "dk_yellow"
+ lightswitch = 0
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/crew_quarters/sleep/spacedorm3
+ name = "\improper Visitor Lodging 3"
+ icon_state = "dk_yellow"
+ lightswitch = 0
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/crew_quarters/sleep/spacedorm4
+ name = "\improper Visitor Lodging 4"
+ icon_state = "dk_yellow"
+ lightswitch = 0
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+
/area/holodeck/holodorm/source_basic
name = "\improper Holodeck Source"
flags = RAD_SHIELDED | BLUE_SHIELDED
@@ -762,8 +784,30 @@
/area/bridge/secondary
name = "\improper Secondary Command Office"
+/area/bridge/secondary/hallway
+ name = "\improper Secondary Command Hallway"
/area/bridge/secondary/meeting_room
name = "\improper Secondary Command Meeting Room"
+ lightswitch = 0
+/area/bridge/secondary/teleporter
+ name = "\improper Secondary Teleporter"
+ lightswitch = 0
+
+/area/tether/station/visitorhallway
+ name = "\improper Visitor Hallway"
+ icon_state = "dk_yellow"
+/area/tether/station/visitorhallway/office
+ name = "\improper Visitor Office"
+ icon_state = "dk_yellow"
+ lightswitch = 0
+/area/tether/station/visitorhallway/laundry
+ name = "\improper Space Laundry"
+ icon_state = "dk_yellow"
+ lightswitch = 0
+/area/tether/station/visitorhallway/lounge
+ name = "\improper Visitor Lounge"
+ icon_state = "dk_yellow"
+ lightswitch = 0
/area/maintenance/station
icon_state = "fsmaint"
@@ -798,6 +842,13 @@
/area/maintenance/abandonedlibraryconference
name = "\improper Abandoned Library Conference"
icon_state = "library"
+/area/maintenance/station/spacecommandmaint
+ name = "\improper Space Command Maintenance"
+ icon_state = "bridge"
+ sound_env = SEWER_PIPE
+/area/maintenance/substation/spacecommand
+ name = "\improper Space Command Substation"
+ icon_state = "substation"
/area/shuttle/tether/crash1
name = "\improper Crash Site 1"
@@ -1065,9 +1116,9 @@
// Exclude some more areas from the atmos leak event so people don't get trapped when spawning.
/datum/event/atmos_leak/setup()
excluded |= /area/tether/surfacebase/tram
- excluded |= /area/tether/surfacebase/atrium_one
- excluded |= /area/tether/surfacebase/atrium_two
- excluded |= /area/tether/surfacebase/atrium_three
+ excluded |= /area/tether/surfacebase/surface_one_hall
+ excluded |= /area/tether/surfacebase/surface_two_hall
+ excluded |= /area/tether/surfacebase/surface_three_hall
excluded |= /area/teleporter/departing
excluded |= /area/hallway/station/upper
..()
\ No newline at end of file
diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm
index 938bb50206..3dcbeb82eb 100644
--- a/maps/tether/tether_defines.dm
+++ b/maps/tether/tether_defines.dm
@@ -19,6 +19,7 @@
#define Z_LEVEL_AEROSTAT 18
#define Z_LEVEL_AEROSTAT_SURFACE 19
#define Z_LEVEL_DEBRISFIELD 20
+#define Z_LEVEL_GATEWAY 21
//Camera networks
#define NETWORK_TETHER "Tether"
@@ -128,6 +129,14 @@
list("Debris Field - Z1 Space")
)
+ lateload_single_pick = list(
+ //list("Snow Outpost"), // Unplayable mapgen,
+ //list("Zoo"), // Too big. way, way too big
+ list("Carp Farm"),
+ list("Snow Field"),
+ list("Listening Post")
+ )
+
ai_shell_restricted = TRUE
ai_shell_allowed_levels = list(
Z_LEVEL_SURFACE_LOW,
diff --git a/nano/images/nanomap_z2.png b/nano/images/nanomap_z2.png
index 1f076cad9f..5ccd461808 100644
Binary files a/nano/images/nanomap_z2.png and b/nano/images/nanomap_z2.png differ
diff --git a/nano/images/nanomap_z3.png b/nano/images/nanomap_z3.png
index ec916ed1bb..0761eed916 100644
Binary files a/nano/images/nanomap_z3.png and b/nano/images/nanomap_z3.png differ
diff --git a/nano/images/nanomap_z5.png b/nano/images/nanomap_z5.png
index 73f01b53b8..d8aece303d 100644
Binary files a/nano/images/nanomap_z5.png and b/nano/images/nanomap_z5.png differ
diff --git a/vorestation.dme b/vorestation.dme
index 251bf4040a..71c24bc62e 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -95,6 +95,7 @@
#include "code\_global_vars\sensitive.dm"
#include "code\_global_vars\lists\mapping.dm"
#include "code\_helpers\_global_objects.dm"
+#include "code\_helpers\_global_objects_vr.dm"
#include "code\_helpers\_lists.dm"
#include "code\_helpers\atmospherics.dm"
#include "code\_helpers\atom_movables.dm"
@@ -137,6 +138,7 @@
#include "code\_onclick\rig.dm"
#include "code\_onclick\telekinesis.dm"
#include "code\_onclick\hud\_defines.dm"
+#include "code\_onclick\hud\_defines_vr.dm"
#include "code\_onclick\hud\ability_screen_objects.dm"
#include "code\_onclick\hud\action.dm"
#include "code\_onclick\hud\ai.dm"
@@ -932,6 +934,7 @@
#include "code\game\objects\effects\overlays.dm"
#include "code\game\objects\effects\portals.dm"
#include "code\game\objects\effects\spiders.dm"
+#include "code\game\objects\effects\spiders_vr.dm"
#include "code\game\objects\effects\step_triggers.dm"
#include "code\game\objects\effects\zone_divider.dm"
#include "code\game\objects\effects\alien\aliens.dm"
@@ -1607,6 +1610,7 @@
#include "code\modules\client\preference_setup\global\05_media.dm"
#include "code\modules\client\preference_setup\global\setting_datums.dm"
#include "code\modules\client\preference_setup\loadout\gear_tweaks.dm"
+#include "code\modules\client\preference_setup\loadout\gear_tweaks_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout.dm"
#include "code\modules\client\preference_setup\loadout\loadout_accessories.dm"
#include "code\modules\client\preference_setup\loadout\loadout_accessories_vr.dm"
@@ -1837,6 +1841,7 @@
#include "code\modules\events\gravity.dm"
#include "code\modules\events\grid_check.dm"
#include "code\modules\events\grubinfestation_vr.dm"
+#include "code\modules\events\ian_storm_vr.dm"
#include "code\modules\events\infestation.dm"
#include "code\modules\events\ion_storm.dm"
#include "code\modules\events\meteor_strike_vr.dm"
@@ -2059,6 +2064,7 @@
#include "code\modules\library\lib_items.dm"
#include "code\modules\library\lib_machines.dm"
#include "code\modules\library\lib_readme.dm"
+#include "code\modules\library\hardcode_library\_library.dm"
#include "code\modules\lighting\lighting_area.dm"
#include "code\modules\lighting\lighting_atom.dm"
#include "code\modules\lighting\lighting_corner.dm"
@@ -2309,6 +2315,10 @@
#include "code\modules\mob\living\carbon\human\species\outsider\shadow.dm"
#include "code\modules\mob\living\carbon\human\species\outsider\skeleton.dm"
#include "code\modules\mob\living\carbon\human\species\outsider\vox.dm"
+#include "code\modules\mob\living\carbon\human\species\shadekin\_defines.dm"
+#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin.dm"
+#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin_abilities.dm"
+#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin_hud.dm"
#include "code\modules\mob\living\carbon\human\species\station\alraune.dm"
#include "code\modules\mob\living\carbon\human\species\station\blank_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\golem.dm"
@@ -2594,7 +2604,6 @@
#include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\ability_procs.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\shadekin.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\types.dm"
-#include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\~defines.dm"
#include "code\modules\mob\living\voice\voice.dm"
#include "code\modules\mob\new_player\login.dm"
#include "code\modules\mob\new_player\login_vr.dm"
@@ -2747,6 +2756,7 @@
#include "code\modules\organs\subtypes\nano.dm"
#include "code\modules\organs\subtypes\replicant.dm"
#include "code\modules\organs\subtypes\seromi.dm"
+#include "code\modules\organs\subtypes\shadekin.dm"
#include "code\modules\organs\subtypes\slime.dm"
#include "code\modules\organs\subtypes\standard.dm"
#include "code\modules\organs\subtypes\standard_vr.dm"
@@ -3368,11 +3378,6 @@
#include "code\ZAS\Zone.dm"
#include "interface\interface.dm"
#include "interface\skin.dmf"
-#include "maps\RandomZLevels\blackmarketpackers.dm"
-#include "maps\RandomZLevels\carpfarm.dm"
-#include "maps\RandomZLevels\listeningpost.dm"
-#include "maps\RandomZLevels\snowfield.dm"
-#include "maps\RandomZLevels\zoo.dm"
#include "maps\southern_cross\southern_cross_jobs_vr.dm"
#include "maps\southern_cross\items\encryptionkey_sc.dm"
#include "maps\southern_cross\items\encryptionkey_vr.dm"