diff --git a/code/__defines/misc.dm b/code/__defines/misc.dm
index 42ada669a6..2014ce8ccf 100644
--- a/code/__defines/misc.dm
+++ b/code/__defines/misc.dm
@@ -502,3 +502,5 @@ GLOBAL_LIST_INIT(all_volume_channels, list(
#define APPEARANCECHANGER_CHANGED_F_HAIRSTYLE "Facial Hair Style"
#define APPEARANCECHANGER_CHANGED_F_HAIRCOLOR "Facial Hair Color"
#define APPEARANCECHANGER_CHANGED_EYES "Eye Color"
+
+#define GET_DECL(D) (ispath(D, /decl) ? (decls_repository.fetched_decls[D] || decls_repository.get_decl(D)) : null)
diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm
index dd75d8a62e..5024a1b1a1 100644
--- a/code/_helpers/global_lists_vr.dm
+++ b/code/_helpers/global_lists_vr.dm
@@ -222,7 +222,9 @@ var/global/list/edible_trash = list(/obj/item/broken_device,
/obj/item/weapon/storage/fancy/crayons,
/obj/item/weapon/storage/fancy/egg_box,
/obj/item/weapon/storage/wallet,
- /obj/item/weapon/storage/vore_egg)
+ /obj/item/weapon/storage/vore_egg,
+ /obj/item/weapon/bikehorn/tinytether
+ )
var/global/list/contamination_flavors = list(
"Generic" = contamination_flavors_generic,
diff --git a/code/controllers/subsystems/plants.dm b/code/controllers/subsystems/plants.dm
index e70f62d5fe..cc066cb99d 100644
--- a/code/controllers/subsystems/plants.dm
+++ b/code/controllers/subsystems/plants.dm
@@ -74,7 +74,7 @@ SUBSYSTEM_DEF(plants)
S.update_seed()
//Might as well mask the gene types while we're at it.
- var/list/gene_datums = decls_repository.decls_of_subtype(/decl/plantgene)
+ var/list/gene_datums = decls_repository.get_decls_of_subtype(/decl/plantgene)
var/list/used_masks = list()
var/list/plant_traits = ALL_GENES
while(plant_traits && plant_traits.len)
diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm
index 48c08f9328..b2ff9beff4 100644
--- a/code/datums/datacore.dm
+++ b/code/datums/datacore.dm
@@ -301,7 +301,7 @@ var/global/list/PDA_Manifest = list()
manifest_inject(H)
return
-/datum/datacore/proc/manifest_modify(var/name, var/assignment)
+/datum/datacore/proc/manifest_modify(var/name, var/assignment, var/rank)
ResetPDAManifest()
var/datum/data/record/foundrecord
var/real_title = assignment
@@ -315,11 +315,17 @@ var/global/list/PDA_Manifest = list()
var/list/all_jobs = get_job_datums()
for(var/datum/job/J in all_jobs)
- var/list/alttitles = get_alternate_titles(J.title)
- if(!J) continue
- if(assignment in alttitles)
- real_title = J.title
+ if(J.title == rank) //If we have a rank, just default to using that.
+ real_title = rank
break
+ else if(J.title == assignment)
+ real_title = assignment
+ break
+ else
+ var/list/alttitles = get_alternate_titles(J.title)
+ if(assignment in alttitles)
+ real_title = J.title
+ break
if(foundrecord)
foundrecord.fields["rank"] = assignment
@@ -332,7 +338,7 @@ var/global/list/PDA_Manifest = list()
var/datum/job/J = SSjob.get_job(H.mind.assigned_role)
hidden = J?.offmap_spawn
- /* Note: Due to cached_character_icon, a number of emergent properties occur due to the initialization
+ /* Note: Due to cached_character_icon, a number of emergent properties occur due to the initialization
* order of readied-up vs latejoiners. Namely, latejoiners will get a uniform in their datacore picture, but readied-up will
* not. This is due to the fact that SSticker calls data_core.manifest_inject() inside of ticker/proc/create_characters(),
* but does not equip them until ticker/proc/equip_characters(), which is called later. So, this proc is literally called before
diff --git a/code/datums/repositories/decls.dm b/code/datums/repositories/decls.dm
index 61b24c21e9..5217481ad9 100644
--- a/code/datums/repositories/decls.dm
+++ b/code/datums/repositories/decls.dm
@@ -1,4 +1,20 @@
-/var/repository/decls/decls_repository = new()
+// /decl is a subtype used for singletons that should never have more than one instance
+// in existence at a time. If you want to use a /decl you should use a pattern like:
+// var/decl/somedecl/mydecl = GET_DECL(/decl/somedecl)
+
+// /decls are created the first time they are fetched from decls_repository and will
+// automatically call Initialize() and such when created in this way.
+
+// decls_repository.get_decls_of_type() and decls_repository.get_decls_of_subtype()
+// can be used similarly to typesof() and subtypesof(), returning assoc instance lists.
+
+// The /decl commandments:
+// I. Thou shalt not create a /decl with new().
+// II. Thou shalt not del() or qdel() a /decl.
+// III. Thou shalt not write a decl that relies on arguments supplied to New().
+// IV. Thou shalt not call Initialize() on a /decl.
+
+var/repository/decls/decls_repository = new()
/repository/decls
var/list/fetched_decls
@@ -11,29 +27,45 @@
fetched_decl_types = list()
fetched_decl_subtypes = list()
-/repository/decls/proc/decls_of_type(var/decl_prototype)
- . = fetched_decl_types[decl_prototype]
- if(!.)
- . = get_decls(typesof(decl_prototype))
- fetched_decl_types[decl_prototype] = .
-
-/repository/decls/proc/decls_of_subtype(var/decl_prototype)
- . = fetched_decl_subtypes[decl_prototype]
- if(!.)
- . = get_decls(subtypesof(decl_prototype))
- fetched_decl_subtypes[decl_prototype] = .
-
/repository/decls/proc/get_decl(var/decl_type)
+ ASSERT(ispath(decl_type))
. = fetched_decls[decl_type]
if(!.)
. = new decl_type()
fetched_decls[decl_type] = .
+ var/decl/decl = .
+ if(istype(decl))
+ decl.Initialize()
+
/repository/decls/proc/get_decls(var/list/decl_types)
. = list()
for(var/decl_type in decl_types)
- .[decl_type] = get_decl(decl_type)
+ .[decl_type] = get_decl(decl_type)
-/decls/Destroy()
+/repository/decls/proc/get_decls_unassociated(var/list/decl_types)
+ . = list()
+ for(var/decl_type in decl_types)
+ . += get_decl(decl_type)
+
+/repository/decls/proc/get_decls_of_type(var/decl_prototype)
+ . = fetched_decl_types[decl_prototype]
+ if(!.)
+ . = get_decls(typesof(decl_prototype))
+ fetched_decl_types[decl_prototype] = .
+
+/repository/decls/proc/get_decls_of_subtype(var/decl_prototype)
+ . = fetched_decl_subtypes[decl_prototype]
+ if(!.)
+ . = get_decls(subtypesof(decl_prototype))
+ fetched_decl_subtypes[decl_prototype] = .
+
+/decl/proc/Initialize()
+ //SHOULD_CALL_PARENT(TRUE)
+ //SHOULD_NOT_SLEEP(TRUE)
+ return
+
+/decl/Destroy()
+ //SHOULD_CALL_PARENT(FALSE)
crash_with("Prevented attempt to delete a decl instance: [log_info_line(src)]")
- return QDEL_HINT_LETMELIVE // Prevents Decl destruction
+ return QDEL_HINT_LETMELIVE // Prevents decl destruction
diff --git a/code/datums/supplypacks/costumes_vr.dm b/code/datums/supplypacks/costumes_vr.dm
index e31fb2415a..5d65a98ca9 100644
--- a/code/datums/supplypacks/costumes_vr.dm
+++ b/code/datums/supplypacks/costumes_vr.dm
@@ -23,16 +23,16 @@
name = "Teshari smocks"
num_contained = 4
contains = list(
- /obj/item/clothing/under/seromi/smock,
- /obj/item/clothing/under/seromi/smock/white,
- /obj/item/clothing/under/seromi/smock/red,
- /obj/item/clothing/under/seromi/smock/yellow,
- /obj/item/clothing/under/seromi/smock/rainbow,
- /obj/item/clothing/under/seromi/smock/dress,
- /obj/item/clothing/under/seromi/smock/blackutilitysmock,
- /obj/item/clothing/under/seromi/smock/greydress,
- /obj/item/clothing/under/seromi/smock/blackutility,
- /obj/item/clothing/under/seromi/smock/bluegreydress
+ /obj/item/clothing/under/teshari/smock,
+ /obj/item/clothing/under/teshari/smock/white,
+ /obj/item/clothing/under/teshari/smock/red,
+ /obj/item/clothing/under/teshari/smock/yellow,
+ /obj/item/clothing/under/teshari/smock/rainbow,
+ /obj/item/clothing/under/teshari/smock/dress,
+ /obj/item/clothing/under/teshari/smock/blackutilitysmock,
+ /obj/item/clothing/under/teshari/smock/greydress,
+ /obj/item/clothing/under/teshari/smock/blackutility,
+ /obj/item/clothing/under/teshari/smock/bluegreydress
)
cost = 20
containertype = /obj/structure/closet/crate
@@ -42,18 +42,18 @@
name = "Teshari undercoats"
num_contained = 4
contains = list(
- /obj/item/clothing/under/seromi/undercoat/standard/orange_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/rainbow,
- /obj/item/clothing/under/seromi/undercoat/standard/lightgrey_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/white_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/red_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/orange,
- /obj/item/clothing/under/seromi/undercoat/standard/yellow_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/green_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/blue_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/purple_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/pink_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/brown_grey
+ /obj/item/clothing/under/teshari/undercoat/standard/orange_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/rainbow,
+ /obj/item/clothing/under/teshari/undercoat/standard/lightgrey_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/white_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/red_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/orange,
+ /obj/item/clothing/under/teshari/undercoat/standard/yellow_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/green_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/blue_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/purple_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/pink_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/brown_grey
)
cost = 20
containertype = /obj/structure/closet/crate
@@ -63,18 +63,18 @@
name = "Teshari undercoats (black)"
num_contained = 4
contains = list(
- /obj/item/clothing/under/seromi/undercoat,
- /obj/item/clothing/under/seromi/undercoat/standard/black_orange,
- /obj/item/clothing/under/seromi/undercoat/standard/black_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/black_white,
- /obj/item/clothing/under/seromi/undercoat/standard/black_red,
- /obj/item/clothing/under/seromi/undercoat/standard/black,
- /obj/item/clothing/under/seromi/undercoat/standard/black_yellow,
- /obj/item/clothing/under/seromi/undercoat/standard/black_green,
- /obj/item/clothing/under/seromi/undercoat/standard/black_blue,
- /obj/item/clothing/under/seromi/undercoat/standard/black_purple,
- /obj/item/clothing/under/seromi/undercoat/standard/black_pink,
- /obj/item/clothing/under/seromi/undercoat/standard/black_brown
+ /obj/item/clothing/under/teshari/undercoat,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_orange,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_grey,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_white,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_red,
+ /obj/item/clothing/under/teshari/undercoat/standard/black,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_yellow,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_green,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_blue,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_purple,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_pink,
+ /obj/item/clothing/under/teshari/undercoat/standard/black_brown
)
cost = 20
containertype = /obj/structure/closet/crate
@@ -84,18 +84,18 @@
name = "Teshari cloaks"
num_contained = 4
contains = list(
- /obj/item/clothing/suit/storage/seromi/cloak/standard/white,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/red_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/orange_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/yellow_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/green_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/blue_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/purple_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/pink_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/brown_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/orange
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/white,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/red_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/orange_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/yellow_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/green_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/blue_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/purple_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/pink_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/brown_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/rainbow,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/orange
)
cost = 40
containertype = /obj/structure/closet/crate
@@ -105,19 +105,19 @@
name = "Teshari cloaks (black)"
num_contained = 4
contains = list(
- /obj/item/clothing/suit/storage/seromi/cloak,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_red,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_orange,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_yellow,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_green,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_blue,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_purple,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_pink,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_brown,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_white,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_glow,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/dark_retrowave
+ /obj/item/clothing/suit/storage/teshari/cloak,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_red,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_orange,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_yellow,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_green,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_blue,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_purple,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_pink,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_brown,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_grey,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_white,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/black_glow,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/dark_retrowave
)
cost = 40
containertype = /obj/structure/closet/crate
@@ -127,16 +127,16 @@
name = "Teshari worksuits"
num_contained = 4
contains = list(
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackpurple,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackorange,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackblue,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackgreen,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitered,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitepurple,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteorange,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteblue,
- /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitegreen
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackpurple,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackorange,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackblue,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackgreen,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/whitered,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/whitepurple,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/whiteorange,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/whiteblue,
+ /obj/item/clothing/under/teshari/undercoat/standard/worksuit/whitegreen
)
cost = 20
containertype = /obj/structure/closet/crate
@@ -146,18 +146,18 @@
name = "Teshari cloaks (belted)"
num_contained = 4
contains = list(
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/rainbow,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/lightgrey_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/white_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/red_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/yellow_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/green_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/blue_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/purple_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/pink_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/brown_grey
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/orange_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/rainbow,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/lightgrey_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/white_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/red_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/orange,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/yellow_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/green_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/blue_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/purple_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/pink_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/brown_grey
)
cost = 40
containertype = /obj/structure/closet/crate
@@ -167,20 +167,20 @@
name = "Teshari cloaks (belted, black)"
num_contained = 4
contains = list(
- /obj/item/clothing/suit/storage/seromi/beltcloak,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_orange,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_grey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_midgrey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_lightgrey,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_white,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_red,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_yellow,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_green,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_blue,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_purple,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_pink,
- /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_brown
+ /obj/item/clothing/suit/storage/teshari/beltcloak,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_orange,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_grey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_midgrey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_lightgrey,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_white,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_red,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_yellow,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_green,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_blue,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_purple,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_pink,
+ /obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_brown
)
cost = 40
containertype = /obj/structure/closet/crate
diff --git a/code/datums/supplypacks/recreation_vr.dm b/code/datums/supplypacks/recreation_vr.dm
index db81cd2061..8471bce6ef 100644
--- a/code/datums/supplypacks/recreation_vr.dm
+++ b/code/datums/supplypacks/recreation_vr.dm
@@ -86,3 +86,23 @@
containertype = /obj/structure/closet/crate
containername = "Shiny clothes crate"
cost = 30
+
+//3/19/21
+/datum/supply_pack/recreation/smoleworld
+ name = "Smole Bulding Bricks"
+ contains = list(
+ /obj/item/weapon/storage/smolebrickcase, /obj/item/weapon/storage/smolebrickcase,
+ )
+ cost = 200
+ containertype = /obj/structure/closet/crate
+ containername = "Smole Bulding Brick crate"
+
+/datum/supply_pack/recreation/smolesnackplanets
+ name = "Snack planets pack"
+ num_contained = 4
+ contains = list(
+ /obj/item/weapon/storage/bagoplanets, /obj/item/weapon/storage/bagoplanets
+ )
+ cost = 25
+ containertype = /obj/structure/closet/crate
+ containername = "Snack planets crate"
diff --git a/code/game/area/Space Station 13 areas_vr.dm b/code/game/area/Space Station 13 areas_vr.dm
index d9a132cd4f..cdc5ffe96c 100644
--- a/code/game/area/Space Station 13 areas_vr.dm
+++ b/code/game/area/Space Station 13 areas_vr.dm
@@ -177,3 +177,9 @@
/area/engineering/engine_gas
name = "\improper Engine Gas Storage"
icon_state = "engine_waste"
+
+//holodeck 3/29/21
+/area/holodeck/source_smoleworld
+ name = "\improper Holodeck - Smolworld"
+
+
diff --git a/code/game/gamemodes/technomancer/core_obj.dm b/code/game/gamemodes/technomancer/core_obj.dm
index 42fb58e662..3912bc6c6b 100644
--- a/code/game/gamemodes/technomancer/core_obj.dm
+++ b/code/game/gamemodes/technomancer/core_obj.dm
@@ -13,7 +13,7 @@
TECH_COMBAT = 7, TECH_MAGNET = 9, TECH_DATA = 5
)
sprite_sheets = list(
- "Teshari" = 'icons/mob/species/seromi/back.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/back.dmi'
)
var/energy = 10000
var/max_energy = 10000
diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm
index 0f52e67b8c..c08bcb2d82 100644
--- a/code/game/machinery/computer/card.dm
+++ b/code/game/machinery/computer/card.dm
@@ -157,7 +157,7 @@
switch(action)
if("modify")
if(modify)
- data_core.manifest_modify(modify.registered_name, modify.assignment)
+ data_core.manifest_modify(modify.registered_name, modify.assignment, modify.rank)
modify.name = "[modify.registered_name]'s ID Card ([modify.assignment])"
if(ishuman(usr))
modify.forceMove(get_turf(src))
diff --git a/code/game/machinery/computer/timeclock_vr.dm b/code/game/machinery/computer/timeclock_vr.dm
index 8cfc711c18..80ce7a701d 100644
--- a/code/game/machinery/computer/timeclock_vr.dm
+++ b/code/game/machinery/computer/timeclock_vr.dm
@@ -177,7 +177,7 @@
card.rank = newjob.title
card.assignment = newassignment
card.name = text("[card.registered_name]'s ID Card ([card.assignment])")
- data_core.manifest_modify(card.registered_name, card.assignment)
+ data_core.manifest_modify(card.registered_name, card.assignment, card.rank)
card.last_job_switch = world.time
callHook("reassign_employee", list(card))
newjob.current_positions++
@@ -203,7 +203,7 @@
card.rank = ptojob.title
card.assignment = ptojob.title
card.name = text("[card.registered_name]'s ID Card ([card.assignment])")
- data_core.manifest_modify(card.registered_name, card.assignment)
+ data_core.manifest_modify(card.registered_name, card.assignment, card.rank)
card.last_job_switch = world.time
callHook("reassign_employee", list(card))
var/mob/living/carbon/human/H = usr
diff --git a/code/game/machinery/computer3/computers/card.dm b/code/game/machinery/computer3/computers/card.dm
index 35eb699531..f9e43aaa7d 100644
--- a/code/game/machinery/computer3/computers/card.dm
+++ b/code/game/machinery/computer3/computers/card.dm
@@ -312,14 +312,14 @@
writer.assignment = t1
writer.name = text("[writer.registered_name]'s ID Card ([writer.assignment])")
- data_core.manifest_modify(writer.registered_name, writer.assignment)
+ data_core.manifest_modify(writer.registered_name, writer.assignment, writer.rank)
callHook("reassign_employee", list(writer))
if("reg" in href_list)
if(auth)
writer.registered_name = href_list["reg"]
writer.name = text("[writer.registered_name]'s ID Card ([writer.assignment])")
- data_core.manifest_modify(writer.registered_name, writer.assignment)
+ data_core.manifest_modify(writer.registered_name, writer.assignment, writer.rank)
callHook("reassign_employee", list(writer))
computer.updateUsrDialog()
diff --git a/code/game/machinery/vending_machines_vr.dm b/code/game/machinery/vending_machines_vr.dm
index e3a800750a..eb7476febe 100644
--- a/code/game/machinery/vending_machines_vr.dm
+++ b/code/game/machinery/vending_machines_vr.dm
@@ -1175,7 +1175,7 @@
/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)
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey = 5)
prices = list(/obj/item/clothing/suit/storage/apron = 100,
/obj/item/clothing/suit/storage/flannel/aqua = 100,
/obj/item/clothing/suit/storage/toggle/bomber = 100,
@@ -1262,7 +1262,7 @@
/obj/item/clothing/suit/varsity/blue = 100,
/obj/item/clothing/suit/varsity/brown = 100,
/obj/item/clothing/suit/storage/hooded/wintercoat = 100,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 100)
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey = 100)
premium = list(/obj/item/clothing/suit/imperium_monk = 3)
contraband = list(/obj/item/toy/katana = 1)
@@ -2536,7 +2536,7 @@
/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)
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey = 5)
prices = list(/obj/item/clothing/suit/storage/apron = 100,
/obj/item/clothing/suit/storage/flannel/aqua = 100,
/obj/item/clothing/suit/storage/toggle/bomber = 100,
@@ -2623,7 +2623,7 @@
/obj/item/clothing/suit/varsity/blue = 100,
/obj/item/clothing/suit/varsity/brown = 100,
/obj/item/clothing/suit/storage/hooded/wintercoat = 100,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 100)
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey = 100)
premium = list(/obj/item/clothing/suit/imperium_monk = 3)
contraband = list(/obj/item/toy/katana = 1)
@@ -3520,7 +3520,7 @@
/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,
+ /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey = 5,
/obj/item/clothing/suit/imperium_monk = 3,
/obj/item/clothing/head/helmet/space/void/engineering = 5,
/obj/item/clothing/suit/space/void/engineering = 5,
diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm
index 21b7463637..7c64f1b203 100644
--- a/code/game/objects/items/devices/radio/headset.dm
+++ b/code/game/objects/items/devices/radio/headset.dm
@@ -8,7 +8,7 @@
subspace_transmission = 1
canhear_range = 0 // can't hear headsets from very far away
slot_flags = SLOT_EARS
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/ears.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/ears.dmi')
var/translate_binary = 0
var/translate_hive = 0
diff --git a/code/game/objects/items/devices/radio/headset_vr.dm b/code/game/objects/items/devices/radio/headset_vr.dm
index 2682d9db97..8285fade75 100644
--- a/code/game/objects/items/devices/radio/headset_vr.dm
+++ b/code/game/objects/items/devices/radio/headset_vr.dm
@@ -22,7 +22,7 @@
icon_state = "nt_headset_alt"
/obj/item/device/radio/headset
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/ears.dmi',
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/ears.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/ears.dmi')
/obj/item/device/radio/headset/mob_headset //Adminbus headset for simplemob shenanigans.
diff --git a/code/game/objects/items/devices/translocator_vr.dm b/code/game/objects/items/devices/translocator_vr.dm
index 348046cd64..36cfb226a2 100644
--- a/code/game/objects/items/devices/translocator_vr.dm
+++ b/code/game/objects/items/devices/translocator_vr.dm
@@ -552,3 +552,7 @@ GLOBAL_LIST_BOILERPLATE(premade_tele_beacons, /obj/item/device/perfect_tele_beac
loc_network = "unkthree"
/obj/item/device/perfect_tele/frontier/unknown/four
loc_network = "unkfour"
+/obj/item/device/perfect_tele/frontier/unknown/five
+ loc_network = "unkfive"
+/obj/item/device/perfect_tele/frontier/unknown/six
+ loc_network = "unksix"
diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm
index 924d753c28..0f7405096d 100644
--- a/code/game/objects/items/weapons/handcuffs.dm
+++ b/code/game/objects/items/weapons/handcuffs.dm
@@ -19,7 +19,7 @@
var/cuff_sound = 'sound/weapons/handcuffs.ogg'
var/cuff_type = "handcuffs"
var/use_time = 30
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/handcuffs.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/handcuffs.dmi')
/obj/item/weapon/handcuffs/get_worn_icon_state(var/slot_name)
if(slot_name == slot_handcuffed_str)
@@ -214,7 +214,7 @@ var/last_chew = 0
origin_tech = list(TECH_MATERIAL = 1)
breakouttime = 300 //Deciseconds = 30s = 0.5 minute
cuff_type = "legcuffs"
- sprite_sheets = list("Teshari" = 'icons/mob/species/seromi/handcuffs.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/handcuffs.dmi')
elastic = 0
cuff_sound = 'sound/weapons/handcuffs.ogg' //This shold work for now.
diff --git a/code/game/objects/items/weapons/id cards/station_ids.dm b/code/game/objects/items/weapons/id cards/station_ids.dm
index 4f21a737c8..5a8fe7448d 100644
--- a/code/game/objects/items/weapons/id cards/station_ids.dm
+++ b/code/game/objects/items/weapons/id cards/station_ids.dm
@@ -5,7 +5,7 @@
item_state = "card-id"
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/id.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/id.dmi'
)
var/access = list()
diff --git a/code/game/objects/items/weapons/id cards/station_ids_vr.dm b/code/game/objects/items/weapons/id cards/station_ids_vr.dm
index 3a8f2cae57..0a9015145a 100644
--- a/code/game/objects/items/weapons/id cards/station_ids_vr.dm
+++ b/code/game/objects/items/weapons/id cards/station_ids_vr.dm
@@ -5,7 +5,7 @@
var/list/title_strings = list()
var/preset_rank = FALSE
-/obj/item/weapon/card/id/event/attack_self(mob/user as mob)
+/obj/item/weapon/card/id/event/attack_self(var/mob/user)
if(configured == 1)
return ..()
@@ -28,10 +28,12 @@
configured = 1
to_chat(user, "Card settings set.")
-/obj/item/weapon/card/id/event/attackby(obj/item/I as obj, mob/user as mob)
+/obj/item/weapon/card/id/event/attackby(obj/item/I as obj, var/mob/user)
if(istype(I, /obj/item/weapon/card/id) && !accessset)
var/obj/item/weapon/card/id/O = I
access |= O.access
+ desc = I.desc
+ rank = O.rank
to_chat(user, "You copy the access from \the [I] to \the [src].")
user.drop_from_inventory(I)
qdel(I)
@@ -52,32 +54,24 @@
icon = 'icons/obj/card_vr.dmi'
base_icon = 'icons/obj/card_vr.dmi'
icon_state = "itg"
- item_state = "itg_id"
- sprite_stack = list("")
/obj/item/weapon/card/id/event/accessset/itg/green
icon_state = "itg_green"
- item_state = "itg_green_id"
/obj/item/weapon/card/id/event/accessset/itg/red
icon_state = "itg_red"
- item_state = "itg_red_id"
/obj/item/weapon/card/id/event/accessset/itg/purple
icon_state = "itg_purple"
- item_state = "itg_purple_id"
/obj/item/weapon/card/id/event/accessset/itg/white
icon_state = "itg_white"
- item_state = "itg_white_id"
/obj/item/weapon/card/id/event/accessset/itg/orange
icon_state = "itg_orange"
- item_state = "itg_orange_id"
/obj/item/weapon/card/id/event/accessset/itg/blue
icon_state = "itg_blue"
- item_state = "itg_blue_id"
/obj/item/weapon/card/id/event/accessset/itg/crew
name = "\improper ITG Crew ID"
@@ -98,7 +92,6 @@
assignment = "Cook"
rank = "Cook"
icon_state = "itg_green"
- item_state = "itg_green_id"
/obj/item/weapon/card/id/event/accessset/itg/crew/security
name = "\improper ITG Security's ID"
@@ -106,7 +99,6 @@
assignment = "Security"
rank = "Security"
icon_state = "itg_red"
- item_state = "itg_red_id"
/obj/item/weapon/card/id/event/accessset/itg/crew/research
name = "\improper ITG Research's ID"
@@ -114,7 +106,6 @@
assignment = "Research"
rank = "Research"
icon_state = "itg_purple"
- item_state = "itg_purple_id"
/obj/item/weapon/card/id/event/accessset/itg/crew/medical
name = "\improper ITG Medic's ID"
@@ -122,7 +113,6 @@
assignment = "Medic"
rank = "Medic"
icon_state = "itg_white"
- item_state = "itg_white_id"
/obj/item/weapon/card/id/event/accessset/itg/crew/engineer
name = "\improper ITG Engineer's ID"
@@ -130,7 +120,6 @@
assignment = "Engineer"
rank = "Engineer"
icon_state = "itg_orange"
- item_state = "itg_orange_id"
/obj/item/weapon/card/id/event/accessset/itg/crew/passengerliason
name = "\improper ITG Passenger Liason's ID"
@@ -138,7 +127,6 @@
assignment = "Passenger Liason"
rank = "Passenger Liason"
icon_state = "itg_blue"
- item_state = "itg_blue_id"
/obj/item/weapon/card/id/event/accessset/itg/crew/captain
name = "\improper ITG Captain's ID"
@@ -146,5 +134,140 @@
assignment = "Captain"
rank = "Captain"
icon_state = "itg_blue"
- item_state = "itg_blue_id"
- access = list(777, 778)
\ No newline at end of file
+ access = list(777, 778)
+
+/obj/item/weapon/card/id/event/altcard
+ icon = 'icons/obj/card_alt_vr.dmi'
+ base_icon = 'icons/obj/card_alt_vr.dmi'
+ icon_state = "id"
+
+/obj/item/weapon/card/id/event/altcard/spare
+ icon_state = "spare"
+
+/obj/item/weapon/card/id/event/altcard/clown
+ icon_state = "Clown"
+
+/obj/item/weapon/card/id/event/altcard/mime
+ icon_state = "Mime"
+
+/obj/item/weapon/card/id/event/altcard/centcom
+ icon_state = "CentCom Officer"
+
+/obj/item/weapon/card/id/event/altcard/ert
+ icon_state = "Emergency Responder"
+
+/obj/item/weapon/card/id/event/altcard/nt
+ icon_state = "nanotrasen"
+
+/obj/item/weapon/card/id/event/altcard/syndiegold
+ icon_state = "syndieGold"
+
+/obj/item/weapon/card/id/event/altcard/syndie
+ icon_state = "syndie"
+
+/obj/item/weapon/card/id/event/altcard/greengold
+ icon_state = "greenGold"
+
+/obj/item/weapon/card/id/event/altcard/pink
+ icon_state = "pink"
+
+/obj/item/weapon/card/id/event/altcard/pinkgold
+ icon_state = "pinkGold"
+
+/obj/item/weapon/card/id/event/polymorphic
+ var/base_icon_state
+
+/obj/item/weapon/card/id/event/polymorphic/digest_act(atom/movable/item_storage = null)
+ var/gimmeicon = icon
+ . = ..()
+ icon = gimmeicon
+ icon_state = base_icon_state + "_digested"
+
+/obj/item/weapon/card/id/event/polymorphic/altcard/attack_self(var/mob/user)
+ if(configured == 1)
+ return ..()
+ else
+ icon_state = user.job
+ base_icon_state = user.job
+ return ..()
+
+/obj/item/weapon/card/id/event/polymorphic/altcard
+ icon = 'icons/obj/card_alt_vr.dmi'
+ base_icon = 'icons/obj/card_alt_vr.dmi'
+ icon_state = "blank"
+ name = "contractor identification card"
+ desc = "An ID card typically used by contractors."
+
+/obj/item/weapon/card/id/event/polymorphic/itg/attack_self(var/mob/user)
+ if(!configured)
+ var/list/jobs_to_icon = list( //ITG only has a few kinds of icons so we have to group them up!
+ "Pilot" = "itg",
+ "Visitor" = "itg",
+ "Quartermaster" = "itg",
+ "Cargo Technician" = "itg",
+ "Shaft Miner" = "itg",
+ "Intern" = "itg",
+ "Talon Pilot" = "itg",
+ "Bartender" = "itg_green",
+ "Botanist" = "itg_green",
+ "Chef" = "itg_green",
+ "Janitor" = "itg_green",
+ "Chaplain" = "itg_green",
+ "Entertainer" = "itg_green",
+ "Janitor" = "itg_green",
+ "Librarian" = "itg_green",
+ "Warden" = "itg_red",
+ "Detective" = "itg_red",
+ "Security Officer" = "itg_red",
+ "Talon Guard" = "itg_red",
+ "Roboticist" = "itg_purple",
+ "Scientist" = "itg_purple",
+ "Xenobiologist" = "itg_purple",
+ "Xenobotanist" = "itg_purple",
+ "Pathfinder" = "itg_purple",
+ "Explorer" = "itg_purple",
+ "Chemist" = "itg_white",
+ "Medical Doctor" = "itg_white",
+ "Paramedic" = "itg_white",
+ "Psychiatrist" = "itg_white",
+ "Field Medic" = "itg_white",
+ "Talon Doctor" = "itg_white",
+ "Atmospheric Technician" = "itg_orange",
+ "Station Engineer" = "itg_orange",
+ "Off-duty Officer" = "itg_red",
+ "Off-duty Engineer" = "itg_orange",
+ "Off-duty Medic" = "itg_white",
+ "Off-duty Scientist" = "itg_purple",
+ "Off-duty Cargo" = "itg",
+ "Off-duty Explorer" = "itg_purple",
+ "Off-duty Worker" = "itg_green"
+ )
+ var/guess = jobs_to_icon[user.job]
+
+ if(!guess)
+ to_chat(user, "ITG Cards do not seem to be able to accept the access codes for your ID.")
+ return
+ else
+ icon_state = guess
+ base_icon_state = guess
+ . = ..()
+ name = user.name + "'s ITG ID card" + " ([assignment])"
+
+
+/obj/item/weapon/card/id/event/polymorphic/itg/attackby(obj/item/I as obj, var/mob/user)
+ if(istype(I, /obj/item/weapon/card/id) && !accessset)
+ var/obj/item/weapon/card/id/O = I
+ var/list/itgdont = list("Site Manager", "Head of Personnel", "Command Secretary", "Head of Security", "Chief Engineer", "Chief Medical Officer", "Research Director", "Clown", "Mime", "Talon Captain") //If you're in as one of these you probably aren't representing ITG
+ if(O.rank in itgdont)
+ to_chat(user, "ITG Cards do not seem to be able to accept the access codes for your ID.")
+ return
+ . = ..()
+ desc = "A small card designating affiliation with the Ironcrest Transport Group. It has a NanoTrasen insignia and a lot of very small print on the back to do with practices and regulations for contractors to use."
+
+
+/obj/item/weapon/card/id/event/polymorphic/itg
+ icon = 'icons/obj/card_vr.dmi'
+ base_icon = 'icons/obj/card_vr.dmi'
+ icon_state = "itg"
+ name = "\improper ITG identification card"
+ desc = "A small card designating affiliation with the Ironcrest Transport Group. It has a NanoTrasen insignia and a lot of very small print on the back to do with practices and regulations for contractors to use."
diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm
index 5741387b7b..8660d8a673 100644
--- a/code/game/objects/items/weapons/storage/backpack.dm
+++ b/code/game/objects/items/weapons/storage/backpack.dm
@@ -8,7 +8,7 @@
icon = 'icons/obj/clothing/backpack.dmi'
icon_state = "backpack"
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/back.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/back.dmi'
)
w_class = ITEMSIZE_LARGE
slot_flags = SLOT_BACK
diff --git a/code/game/objects/items/weapons/storage/backpack_vr.dm b/code/game/objects/items/weapons/storage/backpack_vr.dm
index c201dd5c72..ab83c87752 100644
--- a/code/game/objects/items/weapons/storage/backpack_vr.dm
+++ b/code/game/objects/items/weapons/storage/backpack_vr.dm
@@ -77,7 +77,7 @@
/obj/item/weapon/storage/backpack
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/back.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/back.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/back.dmi')
/obj/item/weapon/storage/backpack/ert
diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm
index c3dba166bc..5dc7f83da8 100644
--- a/code/game/objects/items/weapons/storage/belt.dm
+++ b/code/game/objects/items/weapons/storage/belt.dm
@@ -11,7 +11,7 @@
equip_sound = 'sound/items/toolbelt_equip.ogg'
drop_sound = 'sound/items/drop/toolbelt.ogg'
pickup_sound = 'sound/items/pickup/toolbelt.ogg'
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/belt.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/belt.dmi')
var/show_above_suit = 0
diff --git a/code/game/objects/items/weapons/storage/belt_vr.dm b/code/game/objects/items/weapons/storage/belt_vr.dm
index e726e30b9c..defdcc296b 100644
--- a/code/game/objects/items/weapons/storage/belt_vr.dm
+++ b/code/game/objects/items/weapons/storage/belt_vr.dm
@@ -1,6 +1,6 @@
/obj/item/weapon/storage/belt
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/belt.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/belt.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/belt.dmi')
/obj/item/weapon/storage/belt/explorer
diff --git a/code/game/objects/items/weapons/tanks/tanks.dm b/code/game/objects/items/weapons/tanks/tanks.dm
index f6045c6174..806d26c90b 100644
--- a/code/game/objects/items/weapons/tanks/tanks.dm
+++ b/code/game/objects/items/weapons/tanks/tanks.dm
@@ -8,7 +8,7 @@ var/list/global/tank_gauge_cache = list()
name = "tank"
icon = 'icons/obj/tank.dmi'
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/back.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/back.dmi'
)
drop_sound = 'sound/items/drop/gascan.ogg'
pickup_sound = 'sound/items/pickup/gascan.ogg'
diff --git a/code/game/objects/items/weapons/towels.dm b/code/game/objects/items/weapons/towels.dm
index 2b41ce5163..77e1c43960 100644
--- a/code/game/objects/items/weapons/towels.dm
+++ b/code/game/objects/items/weapons/towels.dm
@@ -15,11 +15,11 @@
..()
switch(slot)
if(slot_head)
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi')
if(slot_wear_suit)
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi')
if(slot_belt)
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/belt.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/belt.dmi')
/obj/item/weapon/towel/attack_self(mob/living/user as mob)
user.visible_message(text("[] uses [] to towel themselves off.", user, src))
diff --git a/code/modules/admin/admin_verb_lists_vr.dm b/code/modules/admin/admin_verb_lists_vr.dm
index b024211d2c..bc6e620b7a 100644
--- a/code/modules/admin/admin_verb_lists_vr.dm
+++ b/code/modules/admin/admin_verb_lists_vr.dm
@@ -19,6 +19,7 @@ var/list/admin_verbs_default = list(
)
var/list/admin_verbs_admin = list(
+ /client/proc/toggle_vantag_hud,
/datum/admins/proc/set_tcrystals,
/datum/admins/proc/add_tcrystals,
/client/proc/invisimin, //allows our mob to go invisible/visible,
@@ -393,6 +394,7 @@ var/list/admin_verbs_mod = list(
)
var/list/admin_verbs_event_manager = list(
+ /client/proc/toggle_vantag_hud,
/client/proc/cmd_event_say,
/client/proc/cmd_admin_pm_context,
/client/proc/cmd_admin_pm_panel,
diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index 6fe715bb74..26e3001129 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -527,6 +527,8 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(equipment)
if(charjob)
job_master.EquipRank(new_character, charjob, 1)
+ new_character.mind.assigned_role = charjob
+ new_character.mind.role_alt_title = job_master.GetPlayerAltTitle(new_character, charjob)
//equip_custom_items(new_character) //VOREStation Removal
//If desired, add records.
@@ -534,7 +536,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
data_core.manifest_inject(new_character)
//A redraw for good measure
- new_character.update_icons_all()
+ new_character.regenerate_icons()
//If we're announcing their arrival
if(announce)
diff --git a/code/modules/admin/verbs/randomverbs_vr.dm b/code/modules/admin/verbs/randomverbs_vr.dm
index d4fa30c824..997556e3a4 100644
--- a/code/modules/admin/verbs/randomverbs_vr.dm
+++ b/code/modules/admin/verbs/randomverbs_vr.dm
@@ -97,3 +97,20 @@
log_admin("ZNarrate: [key_name(usr)] : [msg]")
message_admins(" ZNarrate: [key_name_admin(usr)] : [msg]
", 1)
feedback_add_details("admin_verb","GLNA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/client/proc/toggle_vantag_hud(var/mob/target as mob)
+ set category = "Fun"
+ set name = "Give/Remove Event HUD"
+ set desc = "Give a mob the event hud, which shows them other people's event preferences, or remove it from them"
+
+ if(target.vantag_hud)
+ target.vantag_hud = FALSE
+ target.recalculate_vis()
+ to_chat(src, "You removed the event HUD from [key_name(target)].")
+ to_chat(target, "You no longer have the event HUD.")
+ else
+ target.vantag_hud = TRUE
+ target.recalculate_vis()
+ to_chat(src, "You gave the event HUD to [key_name(target)].")
+ to_chat(target, "You now have the event HUD. Icons will appear next to characters indicating if they prefer to be killed(red crosshairs), devoured(belly), or kidnapped(blue crosshairs) by event characters.")
+ feedback_add_details("admin_verb","GREHud") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
diff --git a/code/modules/ai/ai_holder_combat.dm b/code/modules/ai/ai_holder_combat.dm
index 075a9196d8..e2e1ecbdea 100644
--- a/code/modules/ai/ai_holder_combat.dm
+++ b/code/modules/ai/ai_holder_combat.dm
@@ -9,7 +9,7 @@
var/violent_breakthrough = TRUE // If false, the AI is not allowed to destroy things like windows or other structures in the way. Requires above var to be true.
var/stand_ground = FALSE // If true, the AI won't try to get closer to an enemy if out of range.
-
+
// This does the actual attacking.
/datum/ai_holder/proc/engage_target()
ai_log("engage_target() : Entering.", AI_LOG_DEBUG)
@@ -293,7 +293,7 @@
// Kill common obstacle in the way like tables.
var/obj/structure/obstacle = locate(/obj/structure, problem_turf)
- if(istype(obstacle, /obj/structure/window) || istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table) || istype(obstacle, /obj/structure/grille))
+ if(istype(obstacle, /obj/structure/window) || istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table) || istype(obstacle, /obj/structure/grille) || istype(obstacle, /obj/effect/weaversilk/wall)) //VOREStation Edit: spdr
ai_log("destroy_surroundings() : Attacking generic structure.", AI_LOG_INFO)
return melee_attack(obstacle)
diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
index 4835fa92cf..c28cb0f718 100644
--- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
@@ -1079,7 +1079,7 @@
character_name = list("Roanna Ti'Rox")
/datum/gear/fluff/harmony_id
- path = /obj/item/weapon/card/id/event/fluff/harmony
+ path = /obj/item/weapon/card/id/event/polymorphic/itg
display_name = "Harmony's ITG-ID card"
ckeywhitelist = list("verysoft")
character_name = list("Harmony")
diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm
index d37f929e48..8fd7fa081d 100644
--- a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm
@@ -55,3 +55,8 @@
display_name = "science dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/sci
allowed_roles = list("Research Director","Scientist","Roboticist","Xenobiologist","Xenobotanist","Explorer","Pathfinder")
+
+/datum/gear/utility/ID
+ display_name = "contractor identification card"
+ path = /obj/item/weapon/card/id/event/polymorphic/altcard
+ cost = 1
diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm
index 11792b86e4..d402fd4c4e 100644
--- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm
@@ -94,43 +94,43 @@
/datum/gear/uniform/smock
display_name = "smock selection (Teshari)"
- path = /obj/item/clothing/under/seromi/smock
+ path = /obj/item/clothing/under/teshari/smock
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
/datum/gear/uniform/smock/New()
..()
var/list/smocks = list()
- for(var/smock in typesof(/obj/item/clothing/under/seromi/smock))
- var/obj/item/clothing/under/seromi/smock/smock_type = smock
+ for(var/smock in typesof(/obj/item/clothing/under/teshari/smock))
+ var/obj/item/clothing/under/teshari/smock/smock_type = smock
smocks[initial(smock_type.name)] = smock_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(smocks))
/datum/gear/uniform/undercoat
display_name = "undercoat selection (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/standard
+ path = /obj/item/clothing/under/teshari/undercoat/standard
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
/datum/gear/uniform/undercoat/New()
..()
var/list/undercoats = list()
- for(var/undercoat in typesof(/obj/item/clothing/under/seromi/undercoat/standard))
- var/obj/item/clothing/under/seromi/undercoat/standard/undercoat_type = undercoat
+ for(var/undercoat in typesof(/obj/item/clothing/under/teshari/undercoat/standard))
+ var/obj/item/clothing/under/teshari/undercoat/standard/undercoat_type = undercoat
undercoats[initial(undercoat_type.name)] = undercoat_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(undercoats))
/datum/gear/suit/cloak
display_name = "cloak selection (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/standard
+ path = /obj/item/clothing/suit/storage/teshari/cloak/standard
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
/datum/gear/suit/cloak/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/standard))
- var/obj/item/clothing/suit/storage/seromi/cloak/standard/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/standard))
+ var/obj/item/clothing/suit/storage/teshari/cloak/standard/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
@@ -168,107 +168,107 @@
/datum/gear/uniform/dept/undercoat/cap
display_name = "facility director undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/cap
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/cap
allowed_roles = list("Facility Director")
/datum/gear/uniform/dept/undercoat/hop
display_name = "head of personnel undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/hop
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/hop
allowed_roles = list("Head of Personnel")
/datum/gear/uniform/dept/undercoat/rd
display_name = "research director undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/rd
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/rd
allowed_roles = list("Research Director")
/datum/gear/uniform/dept/undercoat/hos
display_name = "head of security undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/hos
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/hos
allowed_roles = list("Head of Security")
/datum/gear/uniform/dept/undercoat/ce
display_name = "chief engineer undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/ce
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/ce
allowed_roles = list("Chief Engineer")
/datum/gear/uniform/dept/undercoat/cmo
display_name = "chief medical officer undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/cmo
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/cmo
allowed_roles = list("Chief Medical Officer")
/datum/gear/uniform/dept/undercoat/qm
display_name = "quartermaster undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/qm
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/qm
allowed_roles = list("Quartermaster")
/datum/gear/uniform/dept/undercoat/cargo
display_name = "cargo undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/cargo
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/cargo
allowed_roles = list("Cargo Technician","Quartermaster","Shaft Miner")
/datum/gear/uniform/dept/undercoat/mining
display_name = "mining undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/mining
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/mining
allowed_roles = list("Quartermaster","Shaft Miner")
/datum/gear/uniform/dept/undercoat/security
display_name = "security undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/sec
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/sec
allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS
/datum/gear/uniform/dept/undercoat/service
display_name = "service undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/service
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/service
allowed_roles = list("Head of Personnel","Bartender","Botanist","Janitor","Chef","Librarian","Chaplain")
/datum/gear/uniform/dept/undercoat/engineer
display_name = "engineering undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/engineer
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/engineer
allowed_roles = list("Chief Engineer","Station Engineer")
/datum/gear/uniform/dept/undercoat/atmos
display_name = "atmospherics undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/atmos
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/atmos
allowed_roles = list("Chief Engineer","Atmospheric Technician")
/datum/gear/uniform/dept/undercoat/research
display_name = "scientist undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/sci
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/sci
allowed_roles = list("Research Director","Scientist", "Roboticist", "Xenobiologist")
/datum/gear/uniform/dept/undercoat/robo
display_name = "roboticist undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/robo
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/robo
allowed_roles = list("Research Director","Roboticist")
/datum/gear/uniform/dept/undercoat/medical
display_name = "medical undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/medical
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/medical
allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Psychiatrist")
/datum/gear/uniform/dept/undercoat/chemistry
display_name = "chemist undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/chemistry
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/chemistry
allowed_roles = list("Chief Medical Officer","Chemist")
/datum/gear/uniform/dept/undercoat/virology
display_name = "virologist undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/viro
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/viro
allowed_roles = list("Chief Medical Officer","Medical Doctor")
/datum/gear/uniform/dept/undercoat/psych
display_name = "psychiatrist undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/psych
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/psych
allowed_roles = list("Chief Medical Officer","Psychiatrist")
/datum/gear/uniform/dept/undercoat/paramedic
display_name = "paramedic undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/para
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/para
allowed_roles = list("Chief Medical Officer","Paramedic")
/datum/gear/uniform/dept/undercoat/iaa
display_name = "internal affairs undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/iaa
+ path = /obj/item/clothing/under/teshari/undercoat/jobs/iaa
allowed_roles = list("Internal Affairs Agent")
/datum/gear/suit/dept/cloak
@@ -277,248 +277,248 @@
/datum/gear/suit/dept/cloak/cap
display_name = "facility director cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs
allowed_roles = list("Facility Director")
/datum/gear/suit/dept/cloak/hop
display_name = "head of personnel cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/hop
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/hop
allowed_roles = list("Head of Personnel")
/datum/gear/suit/dept/cloak/rd
display_name = "research director cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/rd
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/rd
allowed_roles = list("Research Director")
/datum/gear/suit/dept/cloak/hos
display_name = "head of security cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/hos
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/hos
allowed_roles = list("Head of Security")
/datum/gear/suit/dept/cloak/hos/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/hos,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/hos))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/hos,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/hos))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/cloak/dept/ce
display_name = "chief engineer cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/ce
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/ce
allowed_roles = list("Chief Engineer")
/datum/gear/suit/dept/cloak/ce/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/ce,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/ce))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/ce,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/ce))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/cmo
display_name = "chief medical officer cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/cmo
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/cmo
allowed_roles = list("Chief Medical Officer")
/datum/gear/suit/dept/cloak/cmo/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/cmo,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cmo))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/cmo,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cmo))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/qm
display_name = "quartermaster cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/qm
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/qm
allowed_roles = list("Chief Medical Officer")
/datum/gear/suit/dept/cloak/qm/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/qm,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/qm))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/qm,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/qm))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/cargo
display_name = "cargo cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/cargo
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/cargo
allowed_roles = list("Quartermaster","Shaft Miner","Cargo Technician")
/datum/gear/suit/dept/cloak/cargo/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/cargo,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cargo))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/cargo,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cargo))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/mining
display_name = "mining cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/mining
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/mining
allowed_roles = list("Quartermaster","Shaft Miner")
/datum/gear/suit/dept/cloak/mining/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/mining,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/mining))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/mining,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/mining))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/security
display_name = "security cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sec
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/sec
allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS
/datum/gear/suit/dept/cloak/security/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/sec,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sec))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/sec,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/sec))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/service
display_name = "service cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/service
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/service
allowed_roles = list("Head of Personnel","Bartender","Botanist","Janitor","Chef","Librarian","Chaplain")
/datum/gear/suit/dept/cloak/service/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/service,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/service))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/service,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/service))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/engineer
display_name = "engineering cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/engineer
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/engineer
allowed_roles = list("Chief Engineer","Station Engineer")
/datum/gear/suit/dept/cloak/engineer/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/engineer,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/engineer))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/engineer,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/engineer))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/atmos
display_name = "atmospherics cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/atmos
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/atmos
allowed_roles = list("Chief Engineer","Atmospheric Technician")
/datum/gear/suit/dept/cloak/atmos/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/atmos,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/atmos))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/atmos,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/atmos))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/research
display_name = "scientist cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sci
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/sci
allowed_roles = list("Research Director","Scientist","Roboticist","Xenobiologist")
/datum/gear/suit/dept/cloak/research/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/sci,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sci))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/sci,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/sci))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/robo
display_name = "roboticist cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/robo
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/robo
allowed_roles = list("Research Director","Roboticist")
/datum/gear/suit/dept/cloak/robo/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/robo,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/robo))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/robo,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/robo))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/medical
display_name = "medical cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/medical
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/medical
allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist", "Psychiatrist")
/datum/gear/suit/dept/cloak/medical/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/medical,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/medical))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/medical,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/medical))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/chemistry
display_name = "chemist cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/chemistry
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/chemistry
allowed_roles = list("Chemist")
/datum/gear/suit/dept/cloak/chemistry/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/chemistry,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/chemistry))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/chemistry,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/chemistry))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/virology
display_name = "virologist cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/viro
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/viro
allowed_roles = list("Medical Doctor")
/datum/gear/suit/dept/cloak/virology/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/viro,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/viro))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/viro,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/viro))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/psych
display_name = "psychiatrist cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/psych
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/psych
allowed_roles = list("Chief Medical Officer","Psychiatrist")
/datum/gear/suit/dept/cloak/paramedic
display_name = "paramedic cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/para
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/para
allowed_roles = list("Chief Medical Officer","Paramedic")
/datum/gear/suit/dept/cloak/paramedic/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/para,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/para))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/para,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/para))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/iaa
display_name = "internal affairs cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/iaa
+ path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/iaa
allowed_roles = list("Internal Affairs Agent")
/datum/gear/suit/dept/cloak/iaa/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/iaa,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/iaa))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/cloak/jobs/iaa,/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/iaa))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/uniform/smockcolor
display_name = "smock, recolorable (Teshari)"
- path = /obj/item/clothing/under/seromi/smock/white
+ path = /obj/item/clothing/under/teshari/smock/white
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
@@ -528,21 +528,21 @@
/datum/gear/suit/beltcloak
display_name = "belted cloak selection (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/beltcloak/standard
+ path = /obj/item/clothing/suit/storage/teshari/beltcloak/standard
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
/datum/gear/suit/beltcloak/New()
..()
var/list/cloaks = list()
- for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/beltcloak/standard))
- var/obj/item/clothing/suit/storage/seromi/beltcloak/standard/cloak_type = cloak
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/teshari/beltcloak/standard))
+ var/obj/item/clothing/suit/storage/teshari/beltcloak/standard/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/beltcloak_color
display_name = "belted cloak, recolorable (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/beltcloak/standard/white_grey
+ path = /obj/item/clothing/suit/storage/teshari/beltcloak/standard/white_grey
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
@@ -552,17 +552,17 @@
/datum/gear/suit/dept/beltcloak/wrdn
display_name = "warden belted cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/wrdn
+ path = /obj/item/clothing/suit/storage/teshari/beltcloak/jobs/wrdn
allowed_roles = list("Head of Security","Warden")
/datum/gear/suit/dept/beltcloak/jani
display_name = "janitor belted cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/jani
+ path = /obj/item/clothing/suit/storage/teshari/beltcloak/jobs/jani
allowed_roles = list("Janitor")
/datum/gear/suit/dept/beltcloak/cmd
display_name = "command belted cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/command
+ path = /obj/item/clothing/suit/storage/teshari/beltcloak/jobs/command
allowed_roles = list("Site Manager","Head of Personnel","Head of Security","Chief Engineer","Chief Medical Officer","Research Director")
/datum/gear/suit/cloak_hood
@@ -575,27 +575,27 @@
..()
var/list/cloaks = list()
for(var/cloak in typesof(/obj/item/clothing/suit/storage/hooded/teshari/standard))
- var/obj/item/clothing/suit/storage/seromi/cloak/cloak_type = cloak
+ var/obj/item/clothing/suit/storage/teshari/cloak/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/uniform/worksuit
display_name = "worksuit selection (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/standard/worksuit
+ path = /obj/item/clothing/under/teshari/undercoat/standard/worksuit
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
/datum/gear/uniform/worksuit/New()
..()
var/list/worksuits = list()
- for(var/worksuit in typesof(/obj/item/clothing/under/seromi/undercoat/standard/worksuit))
- var/obj/item/clothing/under/seromi/undercoat/standard/worksuit/worksuit_type = worksuit
+ for(var/worksuit in typesof(/obj/item/clothing/under/teshari/undercoat/standard/worksuit))
+ var/obj/item/clothing/under/teshari/undercoat/standard/worksuit/worksuit_type = worksuit
worksuits[initial(worksuit_type.name)] = worksuit_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(worksuits))
/datum/gear/uniform/undercoatcolor
display_name = "undercoat, recolorable (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/standard/white_grey
+ path = /obj/item/clothing/under/teshari/undercoat/standard/white_grey
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
@@ -605,7 +605,7 @@
/datum/gear/suit/cloakcolor
display_name = "cloak, recolorable (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey
+ path = /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm
index 918294ff7f..c0a71f2c66 100644
--- a/code/modules/clothing/clothing.dm
+++ b/code/modules/clothing/clothing.dm
@@ -229,7 +229,7 @@
throwforce = 2
slot_flags = SLOT_EARS
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/ears.dmi')
+ SPECIES_TESHARI = 'icons/mob/species/teshari/ears.dmi')
/obj/item/clothing/ears/attack_hand(mob/user as mob)
if (!user) return
@@ -328,7 +328,7 @@
slot_flags = SLOT_GLOVES
attack_verb = list("challenged")
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/gloves.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/gloves.dmi',
SPECIES_VOX = 'icons/mob/species/vox/gloves.dmi'
)
drop_sound = 'sound/items/drop/gloves.ogg'
@@ -470,7 +470,7 @@
var/image/helmet_light
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi'
)
drop_sound = 'sound/items/drop/hat.ogg'
@@ -576,7 +576,7 @@
body_parts_covered = FACE|EYES
blood_sprite_state = "maskblood"
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/masks.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/masks.dmi',
SPECIES_VOX = 'icons/mob/species/vox/masks.dmi',
SPECIES_TAJ = 'icons/mob/species/tajaran/mask.dmi',
SPECIES_UNATHI = 'icons/mob/species/unathi/mask.dmi',
@@ -630,7 +630,7 @@
var/overshoes = 0
species_restricted = list("exclude",SPECIES_TESHARI, SPECIES_VOX)
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/shoes.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/shoes.dmi',
SPECIES_VOX = 'icons/mob/species/vox/shoes.dmi'
)
drop_sound = 'sound/items/drop/shoes.ogg'
@@ -753,7 +753,7 @@
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi',
SPECIES_VOX = 'icons/mob/species/vox/suit.dmi'
)
@@ -847,7 +847,7 @@
var/rolled_down = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled
var/rolled_sleeves = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/uniform.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/uniform.dmi',
SPECIES_VOX = 'icons/mob/species/vox/uniform.dmi',
SPECIES_GREY_YW = 'icons/mob/species/grey/uniform.dmi'/*YWedit*/
)
diff --git a/code/modules/clothing/clothing_vr.dm b/code/modules/clothing/clothing_vr.dm
index 1c4b8cd9f3..bf28eb5a36 100644
--- a/code/modules/clothing/clothing_vr.dm
+++ b/code/modules/clothing/clothing_vr.dm
@@ -5,7 +5,7 @@
var/list/inside_emotes = list()
var/recent_squish = 0
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/shoes.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/shoes.dmi',
SPECIES_VOX = 'icons/mob/species/vox/shoes.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/feet.dmi')
@@ -85,13 +85,13 @@
/obj/item/clothing/gloves
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/gloves.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/gloves.dmi',
SPECIES_VOX = 'icons/mob/species/vox/gloves.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/hands.dmi')
/obj/item/clothing/ears
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/ears.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/ears.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/ears.dmi')
/obj/item/clothing/relaymove(var/mob/living/user,var/direction)
@@ -131,7 +131,7 @@
slot_wear_mask_str = 'icons/mob/mask_vr.dmi'
)
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/masks_vr.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/masks_vr.dmi',
SPECIES_VOX = 'icons/mob/species/vox/masks.dmi',
SPECIES_TAJ = 'icons/mob/species/tajaran/mask_vr.dmi',
SPECIES_UNATHI = 'icons/mob/species/unathi/mask_vr.dmi',
@@ -150,7 +150,7 @@
//Switch to taur sprites if a taur equips
/obj/item/clothing/suit
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi',
SPECIES_VOX = 'icons/mob/species/vox/suit.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/suit.dmi')
@@ -159,7 +159,7 @@
sensor_mode = 3
var/sensorpref = 5
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/uniform.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/uniform.dmi',
SPECIES_VOX = 'icons/mob/species/vox/uniform.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/uniform.dmi',
SPECIES_GREY_YW = 'icons/mob/species/grey/uniform.dmi'/*ywedit*/
@@ -181,6 +181,6 @@
/obj/item/clothing/head
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi')
diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm
index 57e7cd66b3..c806371e60 100644
--- a/code/modules/clothing/glasses/glasses.dm
+++ b/code/modules/clothing/glasses/glasses.dm
@@ -31,8 +31,8 @@ BLIND // can't see anything
pickup_sound = 'sound/items/pickup/accessory.ogg'
sprite_sheets = list(
- "Teshari" = 'icons/mob/species/seromi/eyes.dmi',
- "Vox" = 'icons/mob/species/vox/eyes.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/eyes.dmi',
+ SPECIES_VOX = 'icons/mob/species/vox/eyes.dmi'
)
/obj/item/clothing/glasses/update_clothing_icon()
diff --git a/code/modules/clothing/glasses/glasses_vr.dm b/code/modules/clothing/glasses/glasses_vr.dm
index 2608444513..aa0335ddf3 100644
--- a/code/modules/clothing/glasses/glasses_vr.dm
+++ b/code/modules/clothing/glasses/glasses_vr.dm
@@ -125,7 +125,7 @@
/obj/item/clothing/glasses
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/eyes.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/eyes.dmi',
SPECIES_VOX = 'icons/mob/species/vox/eyes.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/eyes.dmi',
SPECIES_GREY_YW = 'icons/mob/species/grey/eyes.dmi'/*ywedit*/
diff --git a/code/modules/clothing/head/collectable.dm b/code/modules/clothing/head/collectable.dm
index 79642d34c1..4b410163fe 100644
--- a/code/modules/clothing/head/collectable.dm
+++ b/code/modules/clothing/head/collectable.dm
@@ -10,7 +10,7 @@
desc = "an ultra rare hat. It commands a certain respect."
icon_state = "petehat"
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi'
)
diff --git a/code/modules/clothing/head/pilot_helmet.dm b/code/modules/clothing/head/pilot_helmet.dm
index 135c73d539..519f7cd1a7 100644
--- a/code/modules/clothing/head/pilot_helmet.dm
+++ b/code/modules/clothing/head/pilot_helmet.dm
@@ -6,7 +6,7 @@
icon_state = "pilot_helmet1"
item_icons = list(slot_head_str = 'icons/mob/pilot_helmet.dmi')
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/pilot_helmet.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/pilot_helmet.dmi'
)
flags = THICKMATERIAL
armor = list(melee = 20, bullet = 10, laser = 10, energy = 5, bomb = 10, bio = 0, rad = 0)
diff --git a/code/modules/clothing/spacesuits/rig/rig_pieces.dm b/code/modules/clothing/spacesuits/rig/rig_pieces.dm
index 8ae8ca3674..cc76771d45 100644
--- a/code/modules/clothing/spacesuits/rig/rig_pieces.dm
+++ b/code/modules/clothing/spacesuits/rig/rig_pieces.dm
@@ -15,7 +15,7 @@
SPECIES_SKRELL = 'icons/mob/species/skrell/helmet.dmi',
SPECIES_UNATHI = 'icons/mob/species/unathi/helmet.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi'
)
species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_PROMETHEAN, SPECIES_TESHARI) //vox, diona, and zaddat can't use hardsuits not designed for them
max_pressure_protection = null
@@ -57,7 +57,7 @@
SPECIES_TAJ = 'icons/mob/species/tajaran/suit.dmi',
SPECIES_UNATHI = 'icons/mob/species/unathi/suit.dmi',
SPECIES_VOX = 'icons/mob/species/vox/suit.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi'
)
supporting_limbs = list()
species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_PROMETHEAN, SPECIES_TESHARI) //vox, diona, and zaddat can't use hardsuits not designed for them
diff --git a/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm b/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm
index bb6f6d1567..4c7cc1c2d4 100644
--- a/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm
+++ b/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm
@@ -12,7 +12,7 @@
SPECIES_FENNEC = 'icons/mob/species/vulpkanin/helmet.dmi',
SPECIES_PROMETHEAN = 'icons/mob/species/skrell/helmet.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi'
SPECIES_GREY_YW = 'icons/mob/species/grey/helmet.dmi' /*ywedit*/
)
@@ -32,7 +32,7 @@
SPECIES_FENNEC = 'icons/mob/species/vulpkanin/suit.dmi',
SPECIES_PROMETHEAN = 'icons/mob/species/skrell/suit.dmi',
SPECIES_VOX = 'icons/mob/species/vox/suit.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi'
)
/obj/item/clothing/head/helmet/space/rig
diff --git a/code/modules/clothing/spacesuits/spacesuits.dm b/code/modules/clothing/spacesuits/spacesuits.dm
index cd2f05f5e7..162b097aa7 100644
--- a/code/modules/clothing/spacesuits/spacesuits.dm
+++ b/code/modules/clothing/spacesuits/spacesuits.dm
@@ -38,7 +38,7 @@
verbs |= /obj/item/clothing/head/helmet/space/proc/toggle_camera
if(type == /obj/item/clothing/head/helmet/space) //VOREStation edit - use the specially refitted sprites by KBraid. Done this way to avoid breaking subtypes.
- sprite_sheets[SPECIES_TESHARI] = 'icons/mob/species/seromi/helmet_vr.dmi'
+ sprite_sheets[SPECIES_TESHARI] = 'icons/mob/species/teshari/helmet_vr.dmi'
/obj/item/clothing/head/helmet/space/proc/toggle_camera()
set name = "Toggle Helmet Camera"
@@ -96,7 +96,7 @@
/obj/item/clothing/suit/space/Initialize()
. = ..()
if(type == /obj/item/clothing/suit/space)
- sprite_sheets[SPECIES_TESHARI] = 'icons/mob/species/seromi/suit_vr.dmi'
+ sprite_sheets[SPECIES_TESHARI] = 'icons/mob/species/teshari/suit_vr.dmi'
//VOREStation edit end.
/obj/item/clothing/suit/space/equipped(mob/M)
diff --git a/code/modules/clothing/spacesuits/void/station.dm b/code/modules/clothing/spacesuits/void/station.dm
index 0dbce4a494..14ead552e2 100644
--- a/code/modules/clothing/spacesuits/void/station.dm
+++ b/code/modules/clothing/spacesuits/void/station.dm
@@ -186,7 +186,7 @@
/obj/item/clothing/head/helmet/space/void/medical/alt/tesh
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi'
)
sprite_sheets_obj = list(
SPECIES_TESHARI = 'icons/obj/clothing/hats.dmi'
@@ -222,7 +222,7 @@
/obj/item/clothing/suit/space/void/medical/alt/tesh
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi'
)
sprite_sheets_obj = list(
SPECIES_TESHARI = 'icons/obj/clothing/spacesuits.dmi'
diff --git a/code/modules/clothing/spacesuits/void/void.dm b/code/modules/clothing/spacesuits/void/void.dm
index d92b1351ee..88ccc7370e 100644
--- a/code/modules/clothing/spacesuits/void/void.dm
+++ b/code/modules/clothing/spacesuits/void/void.dm
@@ -24,7 +24,7 @@
SPECIES_UNATHI = 'icons/obj/clothing/species/unathi/hats.dmi',
SPECIES_TAJ = 'icons/obj/clothing/species/tajaran/hats.dmi',
SPECIES_SKRELL = 'icons/obj/clothing/species/skrell/hats.dmi',
- SPECIES_TESHARI = 'icons/obj/clothing/species/seromi/hats.dmi'
+ SPECIES_TESHARI = 'icons/obj/clothing/species/teshari/hats.dmi'
)
light_overlay = "helmet_light"
@@ -54,7 +54,7 @@
SPECIES_UNATHI = 'icons/obj/clothing/species/unathi/suits.dmi',
SPECIES_TAJ = 'icons/obj/clothing/species/tajaran/suits.dmi',
SPECIES_SKRELL = 'icons/obj/clothing/species/skrell/suits.dmi',
- SPECIES_TESHARI = 'icons/obj/clothing/species/seromi/suits.dmi'
+ SPECIES_TESHARI = 'icons/obj/clothing/species/teshari/suits.dmi'
)
//Breach thresholds, should ideally be inherited by most (if not all) voidsuits.
diff --git a/code/modules/clothing/spacesuits/void/void_vr.dm b/code/modules/clothing/spacesuits/void/void_vr.dm
index 378c2cee3c..ba30534822 100644
--- a/code/modules/clothing/spacesuits/void/void_vr.dm
+++ b/code/modules/clothing/spacesuits/void/void_vr.dm
@@ -11,7 +11,7 @@
SPECIES_TAJ = 'icons/mob/species/tajaran/helmet.dmi',
SPECIES_SKRELL = 'icons/mob/species/skrell/helmet.dmi',
SPECIES_UNATHI = 'icons/mob/species/unathi/helmet.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi',
SPECIES_XENOHYBRID = 'icons/mob/species/unathi/helmet.dmi',
SPECIES_AKULA = 'icons/mob/species/akula/helmet_vr.dmi',
SPECIES_SERGAL = 'icons/mob/species/sergal/helmet_vr.dmi',
@@ -25,7 +25,7 @@
SPECIES_TAJ = 'icons/obj/clothing/species/tajaran/hats.dmi', // Copied from void.dm
SPECIES_SKRELL = 'icons/obj/clothing/species/skrell/hats.dmi', // Copied from void.dm
SPECIES_UNATHI = 'icons/obj/clothing/species/unathi/hats.dmi', // Copied from void.dm
- SPECIES_TESHARI = 'icons/obj/clothing/species/seromi/hats.dmi', // Copied from void.dm
+ SPECIES_TESHARI = 'icons/obj/clothing/species/teshari/hats.dmi', // Copied from void.dm
SPECIES_XENOHYBRID = 'icons/obj/clothing/species/unathi/hats.dmi',
SPECIES_AKULA = 'icons/obj/clothing/species/akula/hats.dmi',
SPECIES_SERGAL = 'icons/obj/clothing/species/sergal/hats.dmi',
@@ -41,7 +41,7 @@
SPECIES_TAJ = 'icons/mob/species/tajaran/suit.dmi',
SPECIES_SKRELL = 'icons/mob/species/skrell/suit.dmi',
SPECIES_UNATHI = 'icons/mob/species/unathi/suit.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi',
SPECIES_XENOHYBRID = 'icons/mob/species/unathi/suit.dmi',
SPECIES_AKULA = 'icons/mob/species/akula/suit_vr.dmi',
SPECIES_SERGAL = 'icons/mob/species/sergal/suit_vr.dmi',
@@ -54,7 +54,7 @@
SPECIES_TAJ = 'icons/obj/clothing/species/tajaran/suits.dmi', // Copied from void.dm
SPECIES_SKRELL = 'icons/obj/clothing/species/skrell/suits.dmi', // Copied from void.dm
SPECIES_UNATHI = 'icons/obj/clothing/species/unathi/suits.dmi', // Copied from void.dm
- SPECIES_TESHARI = 'icons/obj/clothing/species/seromi/suits.dmi', // Copied from void.dm
+ SPECIES_TESHARI = 'icons/obj/clothing/species/teshari/suits.dmi', // Copied from void.dm
SPECIES_XENOHYBRID = 'icons/obj/clothing/species/unathi/suits.dmi',
SPECIES_AKULA = 'icons/obj/clothing/species/akula/suits.dmi',
SPECIES_SERGAL = 'icons/obj/clothing/species/sergal/suits.dmi',
@@ -164,7 +164,7 @@
SPECIES_VULPKANIN = 'icons/mob/species/vulpkanin/suit_vr.dmi',
SPECIES_ZORREN_HIGH = 'icons/mob/species/vulpkanin/suit_vr.dmi',
SPECIES_FENNEC = 'icons/mob/species/vulpkanin/suit_vr.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit_vr.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit_vr.dmi'
)
sprite_sheets_obj = list(
SPECIES_TAJ = 'icons/obj/clothing/suits_vr.dmi',
@@ -243,7 +243,7 @@
SPECIES_VULPKANIN = 'icons/mob/species/vulpkanin/helmet_vr.dmi',
SPECIES_ZORREN_HIGH = 'icons/mob/species/vulpkanin/helmet_vr.dmi',
SPECIES_FENNEC = 'icons/mob/species/vulpkanin/helmet_vr.dmi',
- SPECIES_TESHARI = 'icons/mob/species/seromi/helmet_vr.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/helmet_vr.dmi'
)
sprite_sheets_obj = list(
SPECIES_TAJ = 'icons/obj/clothing/hats_vr.dmi',
diff --git a/code/modules/clothing/suits/aliens/seromi.dm b/code/modules/clothing/suits/aliens/teshari.dm
similarity index 77%
rename from code/modules/clothing/suits/aliens/seromi.dm
rename to code/modules/clothing/suits/aliens/teshari.dm
index 4ce78dff7b..65a19bf8c2 100644
--- a/code/modules/clothing/suits/aliens/seromi.dm
+++ b/code/modules/clothing/suits/aliens/teshari.dm
@@ -1,141 +1,141 @@
// Standard Cloaks
-/obj/item/clothing/suit/storage/seromi/cloak
+/obj/item/clothing/suit/storage/teshari/cloak
name = "black cloak"
desc = "It drapes over a Teshari's shoulders and closes at the neck with pockets convienently placed inside."
- icon = 'icons/mob/species/seromi/teshari_cloak.dmi'
- icon_override = 'icons/mob/species/seromi/teshari_cloak.dmi'
+ icon = 'icons/mob/species/teshari/teshari_cloak.dmi'
+ icon_override = 'icons/mob/species/teshari/teshari_cloak.dmi'
icon_state = "tesh_cloak_bn"
item_state = "tesh_cloak_bn"
species_restricted = list(SPECIES_TESHARI)
body_parts_covered = UPPER_TORSO|ARMS
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_red
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_red
name = "black and red cloak"
icon_state = "tesh_cloak_br"
item_state = "tesh_cloak_br"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_orange
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_orange
name = "black and orange cloak"
icon_state = "tesh_cloak_bo"
item_state = "tesh_cloak_bo"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_yellow
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_yellow
name = "black and yellow cloak"
icon_state = "tesh_cloak_by"
item_state = "tesh_cloak_by"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_green
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_green
name = "black and green cloak"
icon_state = "tesh_cloak_bgr"
item_state = "tesh_cloak_bgr"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_blue
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_blue
name = "black and blue cloak"
icon_state = "tesh_cloak_bbl"
item_state = "tesh_cloak_bbl"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_purple
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_purple
name = "black and purple cloak"
icon_state = "tesh_cloak_bp"
item_state = "tesh_cloak_bp"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_pink
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_pink
name = "black and pink cloak"
icon_state = "tesh_cloak_bpi"
item_state = "tesh_cloak_bpi"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_brown
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_brown
name = "black and brown cloak"
icon_state = "tesh_cloak_bbr"
item_state = "tesh_cloak_bbr"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_grey
name = "black and grey cloak"
icon_state = "tesh_cloak_bg"
item_state = "tesh_cloak_bg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_white
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_white
name = "black and white cloak"
icon_state = "tesh_cloak_bw"
item_state = "tesh_cloak_bw"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/white
+/obj/item/clothing/suit/storage/teshari/cloak/standard/white
name = "white cloak"
icon_state = "tesh_cloak_wn"
item_state = "tesh_cloak_wn"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey
name = "white and grey cloak"
icon_state = "tesh_cloak_wg"
item_state = "tesh_cloak_wg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/red_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/red_grey
name = "red and grey cloak"
icon_state = "tesh_cloak_rg"
item_state = "tesh_cloak_rg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/orange_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/orange_grey
name = "orange and grey cloak"
icon_state = "tesh_cloak_og"
item_state = "tesh_cloak_og"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/yellow_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/yellow_grey
name = "yellow and grey cloak"
icon_state = "tesh_cloak_yg"
item_state = "tesh_cloak_yg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/green_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/green_grey
name = "green and grey cloak"
icon_state = "tesh_cloak_gg"
item_state = "tesh_cloak_gg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/blue_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/blue_grey
name = "blue and grey cloak"
icon_state = "tesh_cloak_blug"
item_state = "tesh_cloak_blug"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/purple_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/purple_grey
name = "purple and grey cloak"
icon_state = "tesh_cloak_pg"
item_state = "tesh_cloak_pg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/pink_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/pink_grey
name = "pink and grey cloak"
icon_state = "tesh_cloak_pig"
item_state = "tesh_cloak_pig"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/brown_grey
+/obj/item/clothing/suit/storage/teshari/cloak/standard/brown_grey
name = "brown and grey cloak"
icon_state = "tesh_cloak_brg"
item_state = "tesh_cloak_brg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow
+/obj/item/clothing/suit/storage/teshari/cloak/standard/rainbow
name = "rainbow cloak"
icon_state = "tesh_cloak_rainbow"
item_state = "tesh_cloak_rainbow"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/orange
+/obj/item/clothing/suit/storage/teshari/cloak/standard/orange
name = "orange cloak"
icon_state = "tesh_cloak_on"
item_state = "tesh_cloak_on"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/dark_retrowave
+/obj/item/clothing/suit/storage/teshari/cloak/standard/dark_retrowave
name = "dark aesthetic cloak"
icon_state = "tesh_cloak_dretrowave"
item_state = "tesh_cloak_dretrowave"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_glow
+/obj/item/clothing/suit/storage/teshari/cloak/standard/black_glow
name = "black and glowing cloak"
icon_state = "tesh_cloak_bglowing"
item_state = "tesh_cloak_bglowing"
// Job Cloaks
-/obj/item/clothing/suit/storage/seromi/cloak/jobs
- icon = 'icons/mob/species/seromi/deptcloak.dmi'
- icon_override = 'icons/mob/species/seromi/deptcloak.dmi'
+/obj/item/clothing/suit/storage/teshari/cloak/jobs
+ icon = 'icons/mob/species/teshari/deptcloak.dmi'
+ icon_override = 'icons/mob/species/teshari/deptcloak.dmi'
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/cap
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/cap
name = "facility director cloak"
desc = "A soft Teshari cloak made for the Facility Director"
icon_state = "tesh_cloak_cap"
@@ -143,19 +143,19 @@
//Cargo
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/qm
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/qm
name = "quartermaster cloak"
desc = "A soft Teshari cloak made for the Quartermaster"
icon_state = "tesh_cloak_qm"
item_state = "tesh_cloak_qm"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/cargo
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/cargo
name = "cargo cloak"
desc = "A soft Teshari cloak made for the Cargo department"
icon_state = "tesh_cloak_car"
item_state = "tesh_cloak_car"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/mining
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/mining
name = "mining cloak"
desc = "A soft Teshari cloak made for Mining"
icon_state = "tesh_cloak_mine"
@@ -163,19 +163,19 @@
//Engineering
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/ce
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/ce
name = "cheif engineer cloak"
desc = "A soft Teshari cloak made the Chief Engineer"
icon_state = "tesh_cloak_ce"
item_state = "tesh_cloak_ce"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/engineer
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/engineer
name = "engineering cloak"
desc = "A soft Teshari cloak made for the Engineering department"
icon_state = "tesh_cloak_engie"
item_state = "tesh_cloak_engie"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/atmos
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/atmos
name = "atmospherics cloak"
desc = "A soft Teshari cloak made for the Atmospheric Technician"
icon_state = "tesh_cloak_atmos"
@@ -183,37 +183,37 @@
//Medical
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/cmo
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/cmo
name = "chief medical officer cloak"
desc = "A soft Teshari cloak made the Cheif Medical Officer"
icon_state = "tesh_cloak_cmo"
item_state = "tesh_cloak_cmo"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/medical
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/medical
name = "medical cloak"
desc = "A soft Teshari cloak made for the Medical department"
icon_state = "tesh_cloak_doc"
item_state = "tesh_cloak_doc"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/chemistry
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/chemistry
name = "chemist cloak"
desc = "A soft Teshari cloak made for the Chemist"
icon_state = "tesh_cloak_chem"
item_state = "tesh_cloak_chem"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/viro
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/viro
name = "virologist cloak"
desc = "A soft Teshari cloak made for the Virologist"
icon_state = "tesh_cloak_viro"
item_state = "tesh_cloak_viro"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/para
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/para
name = "paramedic cloak"
desc = "A soft Teshari cloak made for the Paramedic"
icon_state = "tesh_cloak_para"
item_state = "tesh_cloak_para"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/psych
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/psych
name = " psychiatrist cloak"
desc = "A soft Teshari cloak made for the Psychiatrist"
icon_state = "tesh_cloak_psych"
@@ -221,19 +221,19 @@
//Science
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/rd
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/rd
name = "research director cloak"
desc = "A soft Teshari cloak made for the Research Director"
icon_state = "tesh_cloak_rd"
item_state = "tesh_cloak_rd"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/sci
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/sci
name = "scientist cloak"
desc = "A soft Teshari cloak made for the Science department"
icon_state = "tesh_cloak_sci"
item_state = "tesh_cloak_sci"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/robo
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/robo
name = "roboticist cloak"
desc = "A soft Teshari cloak made for the Roboticist"
icon_state = "tesh_cloak_robo"
@@ -241,19 +241,19 @@
//Security
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/hos
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/hos
name = "head of security cloak"
desc = "A soft Teshari cloak made for the Head of Security"
icon_state = "tesh_cloak_hos"
item_state = "tesh_cloak_hos"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/sec
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/sec
name = "security cloak"
desc = "A soft Teshari cloak made for the Security department"
icon_state = "tesh_cloak_sec"
item_state = "tesh_cloak_sec"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/iaa
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/iaa
name = "internal affairs cloak"
desc = "A soft Teshari cloak made for the Internal Affairs Agent"
icon_state = "tesh_cloak_iaa"
@@ -261,13 +261,13 @@
//Service
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/hop
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/hop
name = "head of personnel cloak"
desc = "A soft Teshari cloak made for the Head of Personnel"
icon_state = "tesh_cloak_hop"
item_state = "tesh_cloak_hop"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/service
+/obj/item/clothing/suit/storage/teshari/cloak/jobs/service
name = "service cloak"
desc = "A soft Teshari cloak made for the Service department"
icon_state = "tesh_cloak_serv"
@@ -278,16 +278,16 @@
/obj/item/clothing/suit/storage/toggle/labcoat/teshari
name = "Teshari labcoat"
desc = "A small suit that protects against minor chemical spills. This one is a good fit on Teshari."
- icon = 'icons/obj/clothing/species/seromi/suits.dmi'
- icon_override = 'icons/mob/species/seromi/suit.dmi'
+ icon = 'icons/obj/clothing/species/teshari/suits.dmi'
+ icon_override = 'icons/mob/species/teshari/suit.dmi'
icon_state = "tesh_labcoat"
species_restricted = list(SPECIES_TESHARI)
/obj/item/clothing/suit/storage/toggle/tesharicoat
name = "small black coat"
desc = "A coat that seems too small to fit a human."
- icon = 'icons/obj/clothing/species/seromi/suits.dmi'
- icon_override = 'icons/mob/species/seromi/suit.dmi'
+ icon = 'icons/obj/clothing/species/teshari/suits.dmi'
+ icon_override = 'icons/mob/species/teshari/suit.dmi'
icon_state = "tesharicoat"
body_parts_covered = UPPER_TORSO|ARMS|LOWER_TORSO|LEGS
species_restricted = list(SPECIES_TESHARI)
@@ -295,8 +295,8 @@
/obj/item/clothing/suit/storage/toggle/tesharicoatwhite
name = "small coat"
desc = "A coat that seems too small to fit a human."
- icon = 'icons/obj/clothing/species/seromi/suits.dmi'
- icon_override = 'icons/mob/species/seromi/suit.dmi'
+ icon = 'icons/obj/clothing/species/teshari/suits.dmi'
+ icon_override = 'icons/mob/species/teshari/suit.dmi'
icon_state = "tesharicoatwhite"
body_parts_covered = UPPER_TORSO|ARMS|LOWER_TORSO|LEGS
species_restricted = list(SPECIES_TESHARI)
@@ -305,8 +305,8 @@
/obj/item/clothing/suit/storage/hooded/teshari
name = "Hooded Teshari Cloak"
desc = "A soft teshari cloak with an added hood."
- icon_override = 'icons/mob/species/seromi/teshari_hood.dmi'
- icon = 'icons/mob/species/seromi/teshari_hood.dmi'
+ icon_override = 'icons/mob/species/teshari/teshari_hood.dmi'
+ icon = 'icons/mob/species/teshari/teshari_hood.dmi'
icon_state = "tesh_hcloak_bo"
item_state_slots = list(slot_r_hand_str = "tesh_hcloak_bo", slot_l_hand_str = "tesh_hcloak_bo")
body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
@@ -319,8 +319,8 @@
/obj/item/clothing/head/tesh_hood
name = "Cloak Hood"
desc = "A hood attached to a teshari cloak."
- icon_override = 'icons/mob/species/seromi/teshari_hood.dmi'
- icon = 'icons/mob/species/seromi/teshari_hood.dmi'
+ icon_override = 'icons/mob/species/teshari/teshari_hood.dmi'
+ icon = 'icons/mob/species/teshari/teshari_hood.dmi'
icon_state = "tesh_hood_bo"
item_state_slots = list(slot_r_hand_str = "tesh_hood_bo", slot_l_hand_str = "tesh_hood_bo")
flags_inv = BLOCKHAIR
@@ -603,261 +603,261 @@
item_state = "tesh_hood_brg"
//Belted cloaks
-/obj/item/clothing/suit/storage/seromi/beltcloak
+/obj/item/clothing/suit/storage/teshari/beltcloak
name = "belted cloak"
desc = "A more ridged and stylized Teshari cloak."
- icon = 'icons/mob/species/seromi/teshari_cloak.dmi'
- icon_override = 'icons/mob/species/seromi/teshari_cloak.dmi'
+ icon = 'icons/mob/species/teshari/teshari_cloak.dmi'
+ icon_override = 'icons/mob/species/teshari/teshari_cloak.dmi'
icon_state = "tesh_beltcloak_bo"
item_state = "tesh_beltcloak_bo"
species_restricted = list(SPECIES_TESHARI)
body_parts_covered = UPPER_TORSO|ARMS
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_orange
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_orange
name = "black belted cloak (orange)"
icon_state = "tesh_beltcloak_bo"
item_state = "tesh_beltcloak_bo"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_grey
name = "black belted cloak"
icon_state = "tesh_beltcloak_bg"
item_state = "tesh_beltcloak_bg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_midgrey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_midgrey
name = "black belted cloak (medium grey)"
icon_state = "tesh_beltcloak_bmg"
item_state = "tesh_beltcloak_bmg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_lightgrey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_lightgrey
name = "black belted cloak (light grey)"
icon_state = "tesh_beltcloak_blg"
item_state = "tesh_beltcloak_blg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_white
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_white
name = "black belted cloak (white)"
icon_state = "tesh_beltcloak_bw"
item_state = "tesh_beltcloak_bw"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_red
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_red
name = "black belted cloak (red)"
icon_state = "tesh_beltcloak_br"
item_state = "tesh_beltcloak_br"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black
name = "black simple belted cloak"
icon_state = "tesh_beltcloak_bn"
item_state = "tesh_beltcloak_bn"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_yellow
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_yellow
name = "black belted cloak (yellow)"
icon_state = "tesh_beltcloak_by"
item_state = "tesh_beltcloak_by"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_green
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_green
name = "black belted cloak (green)"
icon_state = "tesh_beltcloak_bgr"
item_state = "tesh_beltcloak_bgr"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_blue
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_blue
name = "black belted cloak (blue)"
icon_state = "tesh_beltcloak_bbl"
item_state = "tesh_beltcloak_bbl"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_purple
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_purple
name = "black belted cloak (purple)"
icon_state = "tesh_beltcloak_bp"
item_state = "tesh_beltcloak_bp"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_pink
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_pink
name = "black belted cloak (pink)"
icon_state = "tesh_beltcloak_bpi"
item_state = "tesh_beltcloak_bpi"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_brown
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_brown
name = "black belted cloak (brown)"
icon_state = "tesh_beltcloak_bbr"
item_state = "tesh_beltcloak_bbr"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/orange_grey
name = "orange belted cloak"
icon_state = "tesh_beltcloak_og"
item_state = "tesh_beltcloak_og"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/rainbow
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/rainbow
name = "rainbow belted cloak"
icon_state = "tesh_beltcloak_rainbow"
item_state = "tesh_beltcloak_rainbow"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/lightgrey_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/lightgrey_grey
name = "light grey belted cloak"
icon_state = "tesh_beltcloak_lgg"
item_state = "tesh_beltcloak_lgg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/white_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/white_grey
name = "white belted cloak"
icon_state = "tesh_beltcloak_wg"
item_state = "tesh_beltcloak_wg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/red_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/red_grey
name = "red belted cloak"
icon_state = "tesh_beltcloak_rg"
item_state = "tesh_beltcloak_rg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/orange
name = "orange simple belted cloak"
icon_state = "tesh_beltcloak_on"
item_state = "tesh_beltcloak_on"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/yellow_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/yellow_grey
name = "yellow belted cloak"
icon_state = "tesh_beltcloak_yg"
item_state = "tesh_beltcloak_yg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/green_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/green_grey
name = "green belted cloak"
icon_state = "tesh_beltcloak_gg"
item_state = "tesh_beltcloak_gg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/blue_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/blue_grey
name = "blue belted cloak"
icon_state = "tesh_beltcloak_blug"
item_state = "tesh_beltcloak_blug"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/purple_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/purple_grey
name = "purple belted cloak"
icon_state = "tesh_beltcloak_pg"
item_state = "tesh_beltcloak_pg"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/pink_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/pink_grey
name = "pink belted cloak"
icon_state = "tesh_beltcloak_pig"
item_state = "tesh_beltcloak_pig"
-/obj/item/clothing/suit/storage/seromi/beltcloak/standard/brown_grey
+/obj/item/clothing/suit/storage/teshari/beltcloak/standard/brown_grey
name = "brown belted cloak"
icon_state = "tesh_beltcloak_brg"
item_state = "tesh_beltcloak_brg"
//Belted job cloaks
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs
- icon = 'icons/mob/species/seromi/deptcloak.dmi'
- icon_override = 'icons/mob/species/seromi/deptcloak.dmi'
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs
+ icon = 'icons/mob/species/teshari/deptcloak.dmi'
+ icon_override = 'icons/mob/species/teshari/deptcloak.dmi'
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cargo
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cargo
name = "cargo belted cloak"
desc = "A soft Teshari cloak made for the Cargo department"
icon_state = "tesh_beltcloak_car"
item_state = "tesh_beltcloak_car"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/mining
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/mining
name = "mining belted cloak"
desc = "A soft Teshari cloak made for Mining"
icon_state = "tesh_beltcloak_mine"
item_state = "tesh_beltcloak_mine"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/command
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/command
name = "command belted cloak"
desc = "A soft Teshari cloak made for the Command department"
icon_state = "tesh_beltcloak_comm"
item_state = "tesh_beltcloak_comm"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/ce
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/ce
name = "chief engineer belted cloak"
desc = "A soft Teshari cloak made the Chief Engineer"
icon_state = "tesh_beltcloak_ce"
item_state = "tesh_beltcloak_ce"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/engineer
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/engineer
name = "engineering belted cloak"
desc = "A soft Teshari cloak made for the Engineering department"
icon_state = "tesh_beltcloak_engie"
item_state = "tesh_beltcloak_engie"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/atmos
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/atmos
name = "atmospherics belted cloak"
desc = "A soft Teshari cloak made for the Atmospheric Technician"
icon_state = "tesh_beltcloak_atmos"
item_state = "tesh_beltcloak_atmos"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cmo
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/cmo
name = "chief medical officer belted cloak"
desc = "A soft Teshari cloak made the Chief Medical Officer"
icon_state = "tesh_beltcloak_cmo"
item_state = "tesh_beltcloak_cmo"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/medical
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/medical
name = "medical belted cloak"
desc = "A soft Teshari cloak made for the Medical department"
icon_state = "tesh_beltcloak_doc"
item_state = "tesh_beltcloak_doc"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/chemistry
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/chemistry
name = "chemist belted cloak"
desc = "A soft Teshari cloak made for the Chemist"
icon_state = "tesh_beltcloak_vrem"
item_state = "tesh_beltcloak_vrem"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/viro
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/viro
name = "virologist belted cloak"
desc = "A soft Teshari cloak made for the Virologist"
icon_state = "tesh_beltcloak_viro"
item_state = "tesh_beltcloak_viro"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/para
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/para
name = "paramedic belted cloak"
desc = "A soft Teshari cloak made for the Paramedic"
icon_state = "tesh_beltcloak_para"
item_state = "tesh_beltcloak_para"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sci
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/sci
name = "scientist belted cloak"
desc = "A soft Teshari cloak made for the Science department"
icon_state = "tesh_beltcloak_sci"
item_state = "tesh_beltcloak_sci"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/robo
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/robo
name = "roboticist belted cloak"
desc = "A soft Teshari cloak made for the Roboticist"
icon_state = "tesh_beltcloak_robo"
item_state = "tesh_beltcloak_robo"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sec
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/sec
name = "security belted cloak"
desc = "A soft Teshari cloak made for the Security department"
icon_state = "tesh_beltcloak_sec"
item_state = "tesh_beltcloak_sec"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/qm
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/qm
name = "quartermaster belted cloak"
desc = "A soft Teshari cloak made for the Quartermaster"
icon_state = "tesh_beltcloak_qm"
item_state = "tesh_beltcloak_qm"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/service
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/service
name = "service belted cloak"
desc = "A soft Teshari cloak made for the Service department"
icon_state = "tesh_beltcloak_serv"
item_state = "tesh_beltcloak_serv"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/iaa
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/iaa
name = "internal affairs belted cloak"
desc = "A soft Teshari cloak made for the Internal Affairs Agent"
icon_state = "tesh_beltcloak_iaa"
item_state = "tesh_beltcloak_iaa"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/wrdn
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/wrdn
name = "warden belted cloak"
desc = "A soft Teshari cloak made for the Warden"
icon_state = "tesh_beltcloak_wrdn"
item_state = "tesh_beltcloak_wrdn"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/hos
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/hos
name = "security chief belted cloak"
desc = "A soft Teshari cloak made for the Head of Security"
icon_state = "tesh_beltcloak_hos"
item_state = "tesh_beltcloak_hos"
-/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/jani
+/obj/item/clothing/suit/storage/teshari/beltcloak/jobs/jani
name = "janitor belted cloak"
desc = "A soft Teshari cloak made for the Janitor"
icon_state = "tesh_beltcloak_jani"
diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm
index 1cf9a789a7..07853ca79d 100644
--- a/code/modules/clothing/suits/miscellaneous.dm
+++ b/code/modules/clothing/suits/miscellaneous.dm
@@ -107,6 +107,7 @@
name = "red space suit replica"
icon = 'icons/obj/clothing/spacesuits.dmi'
icon_state = "syndicate"
+ default_worn_icon = 'icons/mob/spacesuit.dmi'
desc = "A plastic replica of the syndicate space suit, you'll look just like a real murderous syndicate agent in this! This is a toy, it is not made for use in space!"
w_class = ITEMSIZE_NORMAL
allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/emergency/oxygen,/obj/item/toy)
diff --git a/code/modules/clothing/suits/utility_vr.dm b/code/modules/clothing/suits/utility_vr.dm
index e225a53eee..529547469b 100644
--- a/code/modules/clothing/suits/utility_vr.dm
+++ b/code/modules/clothing/suits/utility_vr.dm
@@ -19,14 +19,14 @@
/obj/item/clothing/head/radiation
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/helmet_vr.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/helmet_vr.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi'
)
/obj/item/clothing/suit/radiation
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/suit_vr.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit_vr.dmi',
SPECIES_VOX = 'icons/mob/species/vox/suit.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/suit.dmi'
)
diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm
index 7469243af4..5f06aca41c 100644
--- a/code/modules/clothing/under/accessories/accessory.dm
+++ b/code/modules/clothing/under/accessories/accessory.dm
@@ -15,7 +15,7 @@
var/concealed_holster = 0
var/mob/living/carbon/human/wearer = null // To check if the wearer changes, so species spritesheets change properly.
var/list/on_rolled = list() // Used when jumpsuit sleevels are rolled ("rolled" entry) or it's rolled down ("down"). Set to "none" to hide in those states.
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/ties.dmi') //Teshari can into webbing, too!
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/ties.dmi') //Teshari can into webbing, too!
drop_sound = 'sound/items/drop/accessory.ogg'
pickup_sound = 'sound/items/pickup/accessory.ogg'
diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm
index 2d241bf3b5..85c2804758 100644
--- a/code/modules/clothing/under/accessories/accessory_vr.dm
+++ b/code/modules/clothing/under/accessories/accessory_vr.dm
@@ -14,7 +14,7 @@
var/customized = 0
var/icon_previous_override
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/ties_vr.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/ties_vr.dmi'
)
//Forces different sprite sheet on equip
@@ -64,7 +64,7 @@
var/writtenon = 0
var/icon_previous_override
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/ties_vr.dmi'
+ SPECIES_TESHARI = 'icons/mob/species/teshari/ties_vr.dmi'
)
//Forces different sprite sheet on equip
diff --git a/code/modules/clothing/under/accessories/clothing.dm b/code/modules/clothing/under/accessories/clothing.dm
index e9f55de97c..ddc145b2c0 100644
--- a/code/modules/clothing/under/accessories/clothing.dm
+++ b/code/modules/clothing/under/accessories/clothing.dm
@@ -57,10 +57,9 @@
siemens_coefficient = 0.9
w_class = ITEMSIZE_NORMAL
slot = ACCESSORY_SLOT_OVER
-
sprite_sheets = list(
- "Teshari" = 'icons/mob/species/seromi/suit.dmi'
- )
+ SPECIES_TESHARI = 'icons/mob/species/teshari/suit.dmi'
+ )
//YWEdit Start, Makes ponchos use teshari sprite
@@ -72,6 +71,18 @@
return ..()
//YWEdit end
+/obj/item/clothing/accessory/poncho/equipped() //Solution for race-specific sprites for an accessory which is also a suit. Suit icons break if you don't use icon override which then also overrides race-specific sprites.
+ ..()
+ var/mob/living/carbon/human/H = loc
+ if(istype(H) && H.wear_suit == src)
+ if(H.species.name == SPECIES_TESHARI)
+ icon_override = 'icons/mob/species/teshari/suit.dmi'
+ else
+ icon_override = 'icons/mob/ties.dmi'
+ update_clothing_icon()
+
+/obj/item/clothing/accessory/poncho/dropped() //Resets the override to prevent the wrong .dmi from being used because equipped only triggers when wearing ponchos as suits.
+ icon_override = null
/obj/item/clothing/accessory/poncho/green
name = "green poncho"
diff --git a/code/modules/clothing/under/xenos/seromi.dm b/code/modules/clothing/under/xenos/teshari.dm
similarity index 66%
rename from code/modules/clothing/under/xenos/seromi.dm
rename to code/modules/clothing/under/xenos/teshari.dm
index 0593f78f72..39c3590bf4 100644
--- a/code/modules/clothing/under/xenos/seromi.dm
+++ b/code/modules/clothing/under/xenos/teshari.dm
@@ -1,387 +1,387 @@
-/obj/item/clothing/under/seromi
- icon = 'icons/obj/clothing/species/seromi/uniform.dmi'
+/obj/item/clothing/under/teshari
+ icon = 'icons/obj/clothing/species/teshari/uniform.dmi'
icon_state = "seromi_grey"
species_restricted = list(SPECIES_TESHARI)
-/obj/item/clothing/under/seromi/smock
+/obj/item/clothing/under/teshari/smock
name = "small grey smock"
desc = "It looks fitted to nonhuman proportions."
icon_state = "seromi_grey"
body_parts_covered = 0 // It's a thin piece of cloth with a neck hole.
-/obj/item/clothing/under/seromi/smock/white
+/obj/item/clothing/under/teshari/smock/white
name = "small white smock"
icon_state = "seromi_white"
-/obj/item/clothing/under/seromi/smock/red
+/obj/item/clothing/under/teshari/smock/red
name = "small Security smock"
icon_state = "seromi_red"
-/obj/item/clothing/under/seromi/smock/yellow
+/obj/item/clothing/under/teshari/smock/yellow
name = "small Engineering smock"
icon_state = "seromi_yellow"
-/obj/item/clothing/under/seromi/smock/medical
+/obj/item/clothing/under/teshari/smock/medical
name = "small Medical uniform"
icon_state = "seromi_medical"
-/obj/item/clothing/under/seromi/smock/science
+/obj/item/clothing/under/teshari/smock/science
name = "small Research uniform"
icon_state = "teshari_science"
-/obj/item/clothing/under/seromi/smock/rainbow
+/obj/item/clothing/under/teshari/smock/rainbow
name = "small rainbow smock"
icon_state = "seromi_rainbow"
-/obj/item/clothing/under/seromi/smock/dress
+/obj/item/clothing/under/teshari/smock/dress
name = "small command dress"
icon_state = "seromi_dress_cap"
-/obj/item/clothing/under/seromi/smock/dress/science
+/obj/item/clothing/under/teshari/smock/dress/science
name = "small research dress"
icon_state = "tesh_dress_science"
-/obj/item/clothing/under/seromi/smock/dress/security
+/obj/item/clothing/under/teshari/smock/dress/security
name = "small security dress"
icon_state = "tesh_dress_security"
-/obj/item/clothing/under/seromi/smock/dress/engine
+/obj/item/clothing/under/teshari/smock/dress/engine
name = "small engineering dress"
icon_state = "tesh_dress_engine"
-/obj/item/clothing/under/seromi/smock/dress/medical
+/obj/item/clothing/under/teshari/smock/dress/medical
name = "small medical dress"
icon_state = "tesh_dress_medical"
-/obj/item/clothing/under/seromi/smock/uniform
+/obj/item/clothing/under/teshari/smock/uniform
name = "small command uniform"
icon_state = "seromi_captain"
-/obj/item/clothing/under/seromi/smock/formal
+/obj/item/clothing/under/teshari/smock/formal
name = "small formal uniform"
icon_state = "seromi_captain_formal"
-/obj/item/clothing/under/seromi/smock/blackutilitysmock
+/obj/item/clothing/under/teshari/smock/blackutilitysmock
name = "black utility smock"
icon_state = "teshari_blackutility_com"
-/obj/item/clothing/under/seromi/smock/greydress
+/obj/item/clothing/under/teshari/smock/greydress
name = "small grey dress"
icon_state = "teshari_greydress"
-/obj/item/clothing/under/seromi/smock/blackutility
+/obj/item/clothing/under/teshari/smock/blackutility
name = "Teshari utility uniform"
icon_state = "teshari_blackutility"
-/obj/item/clothing/under/seromi/smock/bluegreydress
+/obj/item/clothing/under/teshari/smock/bluegreydress
name = "small blue and grey dress"
icon_state = "teshari_bluegreydress"
// Worksuits
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit
name = "small black and red worksuit"
icon_state = "teshari_black_red_worksuit"
item_state = "teshari_black_red_worksuit"
desc = "A small worksuit designed for a Teshari"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackpurple
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackpurple
name = "small black and purple worksuit"
icon_state = "teshari_black_purple_worksuit"
item_state = "teshari_black_purple_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackorange
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackorange
name = "small black and orange worksuit"
icon_state = "teshari_black_orange_worksuit"
item_state = "teshari_black_orange_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackblue
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackblue
name = "small black and blue worksuit"
icon_state = "teshari_black_blue_worksuit"
item_state = "teshari_black_blue_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackgreen
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/blackgreen
name = "small black and greeen worksuit"
icon_state = "teshari_black_green_worksuit"
item_state = "teshari_black_green_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitered
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/whitered
name = "small white and red worksuit"
icon_state = "teshari_white_red_worksuit"
item_state = "teshari_white_red_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitepurple
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/whitepurple
name = "small white and purple worksuit"
icon_state = "teshari_white_purple_worksuit"
item_state = "teshari_white_purple_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteorange
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/whiteorange
name = "small white and orange worksuit"
icon_state = "teshari_white_orange_worksuit"
item_state = "teshari_white_orange_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteblue
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/whiteblue
name = "small white and blue worksuit"
icon_state = "teshari_white_blue_worksuit"
item_state = "teshari_white_blue_worksuit"
-/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitegreen
+/obj/item/clothing/under/teshari/undercoat/standard/worksuit/whitegreen
name = "small white and green worksuit"
icon_state = "teshari_white_green_worksuit"
item_state = "teshari_white_green_worksuit"
//Standard Undercoats
-/obj/item/clothing/under/seromi/undercoat
+/obj/item/clothing/under/teshari/undercoat
name = "Undercoat"
desc = "A Teshari traditional garb, with a modern twist! Made of micro and nanofibres to make it light and billowy, perfect for going fast and stylishly!"
- icon = 'icons/mob/species/seromi/teshari_uniform.dmi'
- icon_override = 'icons/mob/species/seromi/teshari_uniform.dmi'
+ icon = 'icons/mob/species/teshari/teshari_uniform.dmi'
+ icon_override = 'icons/mob/species/teshari/teshari_uniform.dmi'
icon_state = "tesh_uniform_bo"
item_state = "tesh_uniform_bo"
body_parts_covered = UPPER_TORSO|LOWER_TORSO
-/obj/item/clothing/under/seromi/undercoat/standard/black_orange
+/obj/item/clothing/under/teshari/undercoat/standard/black_orange
name = "black and orange undercoat"
icon_state = "tesh_uniform_bo"
item_state = "tesh_uniform_bo"
-/obj/item/clothing/under/seromi/undercoat/standard/black_grey
+/obj/item/clothing/under/teshari/undercoat/standard/black_grey
name = "black and grey undercoat"
icon_state = "tesh_uniform_bg"
item_state = "tesh_uniform_bg"
-/obj/item/clothing/under/seromi/undercoat/standard/black_white
+/obj/item/clothing/under/teshari/undercoat/standard/black_white
name = "black and white undercoat"
icon_state = "tesh_uniform_bw"
item_state = "tesh_uniform_bw"
-/obj/item/clothing/under/seromi/undercoat/standard/black_red
+/obj/item/clothing/under/teshari/undercoat/standard/black_red
name = "black and red undercoat"
icon_state = "tesh_uniform_br"
item_state = "tesh_uniform_br"
-/obj/item/clothing/under/seromi/undercoat/standard/black
+/obj/item/clothing/under/teshari/undercoat/standard/black
name = "black undercoat"
icon_state = "tesh_uniform_bn"
item_state = "tesh_uniform_bn"
-/obj/item/clothing/under/seromi/undercoat/standard/black_yellow
+/obj/item/clothing/under/teshari/undercoat/standard/black_yellow
name = "black and yellow undercoat"
icon_state = "tesh_uniform_by"
item_state = "tesh_uniform_by"
-/obj/item/clothing/under/seromi/undercoat/standard/black_green
+/obj/item/clothing/under/teshari/undercoat/standard/black_green
name = "black and green undercoat"
icon_state = "tesh_uniform_bgr"
item_state = "tesh_uniform_bgr"
-/obj/item/clothing/under/seromi/undercoat/standard/black_blue
+/obj/item/clothing/under/teshari/undercoat/standard/black_blue
name = "black and blue undercoat"
icon_state = "tesh_uniform_bbl"
item_state = "tesh_uniform_bbl"
-/obj/item/clothing/under/seromi/undercoat/standard/black_purple
+/obj/item/clothing/under/teshari/undercoat/standard/black_purple
name = "black and purple undercoat"
icon_state = "tesh_uniform_bp"
item_state = "tesh_uniform_bp"
-/obj/item/clothing/under/seromi/undercoat/standard/black_pink
+/obj/item/clothing/under/teshari/undercoat/standard/black_pink
name = "black and pink undercoat"
icon_state = "tesh_uniform_bpi"
item_state = "tesh_uniform_bpi"
-/obj/item/clothing/under/seromi/undercoat/standard/black_brown
+/obj/item/clothing/under/teshari/undercoat/standard/black_brown
name = "black and brown undercoat"
icon_state = "tesh_uniform_bbr"
item_state = "tesh_uniform_bbr"
-/obj/item/clothing/under/seromi/undercoat/standard/orange_grey
+/obj/item/clothing/under/teshari/undercoat/standard/orange_grey
name = "orange and grey undercoat"
icon_state = "tesh_uniform_og"
item_state = "tesh_uniform_og"
-/obj/item/clothing/under/seromi/undercoat/standard/rainbow
+/obj/item/clothing/under/teshari/undercoat/standard/rainbow
name = "rainbow undercoat"
icon_state = "tesh_uniform_rainbow"
item_state = "tesh_uniform_rainbow"
-/obj/item/clothing/under/seromi/undercoat/standard/lightgrey_grey
+/obj/item/clothing/under/teshari/undercoat/standard/lightgrey_grey
name = "light grey and grey undercoat"
icon_state = "tesh_uniform_lgg"
item_state = "tesh_uniform_lgg"
-/obj/item/clothing/under/seromi/undercoat/standard/white_grey
+/obj/item/clothing/under/teshari/undercoat/standard/white_grey
name = "white and grey undercoat"
icon_state = "tesh_uniform_wg"
item_state = "tesh_uniform_wg"
-/obj/item/clothing/under/seromi/undercoat/standard/red_grey
+/obj/item/clothing/under/teshari/undercoat/standard/red_grey
name = "red and grey undercoat"
icon_state = "tesh_uniform_rg"
item_state = "tesh_uniform_rg"
-/obj/item/clothing/under/seromi/undercoat/standard/orange
+/obj/item/clothing/under/teshari/undercoat/standard/orange
name = "orange undercoat"
icon_state = "tesh_uniform_on"
item_state = "tesh_uniform_on"
-/obj/item/clothing/under/seromi/undercoat/standard/yellow_grey
+/obj/item/clothing/under/teshari/undercoat/standard/yellow_grey
name = "yellow and grey undercoat"
icon_state = "tesh_uniform_yg"
item_state = "tesh_uniform_yg"
-/obj/item/clothing/under/seromi/undercoat/standard/green_grey
+/obj/item/clothing/under/teshari/undercoat/standard/green_grey
name = "green and grey undercoat"
icon_state = "tesh_uniform_gg"
item_state = "tesh_uniform_gg"
-/obj/item/clothing/under/seromi/undercoat/standard/blue_grey
+/obj/item/clothing/under/teshari/undercoat/standard/blue_grey
name = "blue and grey undercoat"
icon_state = "tesh_uniform_blug"
item_state = "tesh_uniform_blug"
-/obj/item/clothing/under/seromi/undercoat/standard/purple_grey
+/obj/item/clothing/under/teshari/undercoat/standard/purple_grey
name = "purple and grey undercoat"
icon_state = "tesh_uniform_pg"
item_state = "tesh_uniform_pg"
-/obj/item/clothing/under/seromi/undercoat/standard/pink_grey
+/obj/item/clothing/under/teshari/undercoat/standard/pink_grey
name = "pink and grey undercoat"
icon_state = "tesh_uniform_pig"
item_state = "tesh_uniform_pig"
-/obj/item/clothing/under/seromi/undercoat/standard/brown_grey
+/obj/item/clothing/under/teshari/undercoat/standard/brown_grey
name = "brown and grey undercoat"
icon_state = "tesh_uniform_brg"
item_state = "tesh_uniform_brg"
//Job Undercoats
-/obj/item/clothing/under/seromi/undercoat/jobs
- icon = 'icons/mob/species/seromi/deptjacket.dmi'
- icon_override = 'icons/mob/species/seromi/deptjacket.dmi'
+/obj/item/clothing/under/teshari/undercoat/jobs
+ icon = 'icons/mob/species/teshari/deptjacket.dmi'
+ icon_override = 'icons/mob/species/teshari/deptjacket.dmi'
-/obj/item/clothing/under/seromi/undercoat/jobs/cap
+/obj/item/clothing/under/teshari/undercoat/jobs/cap
name = "facility director undercoat"
desc = "A traditional Teshari garb made for the Facility Director"
icon_state = "tesh_uniform_cap"
item_state = "tesh_uniform_cap"
-/obj/item/clothing/under/seromi/undercoat/jobs/hop
+/obj/item/clothing/under/teshari/undercoat/jobs/hop
name = "head of personnel undercoat"
desc = "A traditional Teshari garb made for the Head of Personnel"
icon_state = "tesh_uniform_hop"
item_state = "tesh_uniform_hop"
-/obj/item/clothing/under/seromi/undercoat/jobs/ce
+/obj/item/clothing/under/teshari/undercoat/jobs/ce
name = "cheif engineer undercoat"
desc = "A traditional Teshari garb made for the Chief Engineer"
icon_state = "tesh_uniform_ce"
item_state = "tesh_uniform_ce"
-/obj/item/clothing/under/seromi/undercoat/jobs/hos
+/obj/item/clothing/under/teshari/undercoat/jobs/hos
name = "head of security undercoat"
desc = "A traditional Teshari garb made for the Head of Security"
icon_state = "tesh_uniform_hos"
item_state = "tesh_uniform_hos"
-/obj/item/clothing/under/seromi/undercoat/jobs/rd
+/obj/item/clothing/under/teshari/undercoat/jobs/rd
name = "research director undercoat"
desc = "A traditional Teshari garb made for the Research Director"
icon_state = "tesh_uniform_rd"
item_state = "tesh_uniform_rd"
-/obj/item/clothing/under/seromi/undercoat/jobs/engineer
+/obj/item/clothing/under/teshari/undercoat/jobs/engineer
name = "engineering undercoat"
desc = "A traditional Teshari garb made for the Engineering department"
icon_state = "tesh_uniform_engie"
item_state = "tesh_uniform_engie"
-/obj/item/clothing/under/seromi/undercoat/jobs/atmos
+/obj/item/clothing/under/teshari/undercoat/jobs/atmos
name = "atmospherics undercoat"
desc = "A traditional Teshari garb made for the Atmospheric Technician"
icon_state = "tesh_uniform_atmos"
item_state = "tesh_uniform_atmos"
-/obj/item/clothing/under/seromi/undercoat/jobs/cmo
+/obj/item/clothing/under/teshari/undercoat/jobs/cmo
name = "chief medical officer undercoat"
desc = "A traditional Teshari garb made for the Cheif Medical Officer"
icon_state = "tesh_uniform_cmo"
item_state = "tesh_uniform_cmo"
-/obj/item/clothing/under/seromi/undercoat/jobs/qm
+/obj/item/clothing/under/teshari/undercoat/jobs/qm
name = "quartermaster undercoat"
desc = "A traditional Teshari garb made for the Quartermaster"
icon_state = "tesh_uniform_qm"
item_state = "tesh_uniform_qm"
-/obj/item/clothing/under/seromi/undercoat/jobs/cargo
+/obj/item/clothing/under/teshari/undercoat/jobs/cargo
name = "cargo undercoat"
desc = "A traditional Teshari garb made for the Cargo department"
icon_state = "tesh_uniform_car"
item_state = "tesh_uniform_car"
-/obj/item/clothing/under/seromi/undercoat/jobs/mining
+/obj/item/clothing/under/teshari/undercoat/jobs/mining
name = "mining undercoat"
desc = "A traditional Teshari garb made for Mining"
icon_state = "tesh_uniform_mine"
item_state = "tesh_uniform_mine"
-/obj/item/clothing/under/seromi/undercoat/jobs/medical
+/obj/item/clothing/under/teshari/undercoat/jobs/medical
name = "medical undercoat"
desc = "A traditional Teshari garb made for the Medical department"
icon_state = "tesh_uniform_doc"
item_state = "tesh_uniform_doc"
-/obj/item/clothing/under/seromi/undercoat/jobs/chemistry
+/obj/item/clothing/under/teshari/undercoat/jobs/chemistry
name = "chemist undercoat"
desc = "A traditional Teshari garb made for the Chemist"
icon_state = "tesh_uniform_chem"
item_state = "tesh_uniform_chem"
-/obj/item/clothing/under/seromi/undercoat/jobs/viro
+/obj/item/clothing/under/teshari/undercoat/jobs/viro
name = "virologist undercoat"
desc = "A traditional Teshari garb made for the Virologist"
icon_state = "tesh_uniform_viro"
item_state = "tesh_uniform_viro"
-/obj/item/clothing/under/seromi/undercoat/jobs/psych
+/obj/item/clothing/under/teshari/undercoat/jobs/psych
name = "psychiatrist undercoat"
desc = "A traditional Teshari garb made for the Psychiatrist"
icon_state = "tesh_uniform_psych"
item_state = "tesh_uniform_psych"
-/obj/item/clothing/under/seromi/undercoat/jobs/para
+/obj/item/clothing/under/teshari/undercoat/jobs/para
name = "paramedic undercoat"
desc = "A traditional Teshari garb made for the Paramedic"
icon_state = "tesh_uniform_para"
item_state = "tesh_uniform_para"
-/obj/item/clothing/under/seromi/undercoat/jobs/sci
+/obj/item/clothing/under/teshari/undercoat/jobs/sci
name = "scientist undercoat"
desc = "A traditional Teshari garb made for the Science department"
icon_state = "tesh_uniform_sci"
item_state = "tesh_uniform_sci"
-/obj/item/clothing/under/seromi/undercoat/jobs/robo
+/obj/item/clothing/under/teshari/undercoat/jobs/robo
name = "roboticist undercoat"
desc = "A traditional Teshari garb made for the Roboticist"
icon_state = "tesh_uniform_robo"
item_state = "tesh_uniform_robo"
-/obj/item/clothing/under/seromi/undercoat/jobs/sec
+/obj/item/clothing/under/teshari/undercoat/jobs/sec
name = "security undercoat"
desc = "A traditional Teshari garb made for the Security department"
icon_state = "tesh_uniform_sec"
item_state = "tesh_uniform_sec"
-/obj/item/clothing/under/seromi/undercoat/jobs/service
+/obj/item/clothing/under/teshari/undercoat/jobs/service
name = "service undercoat"
desc = "A traditional Teshari garb made for the Service department"
icon_state = "tesh_uniform_serv"
item_state = "tesh_uniform_serv"
-/obj/item/clothing/under/seromi/undercoat/jobs/iaa
+/obj/item/clothing/under/teshari/undercoat/jobs/iaa
name = "internal affairs undercoat"
desc = "A traditional Teshari garb made for the Internal Affairs Agent"
icon_state = "tesh_uniform_iaa"
diff --git a/code/modules/holodeck/HolodeckControl.dm b/code/modules/holodeck/HolodeckControl.dm
index bfa684f4e6..8a9e0c2dda 100644
--- a/code/modules/holodeck/HolodeckControl.dm
+++ b/code/modules/holodeck/HolodeckControl.dm
@@ -63,6 +63,7 @@
"Meetinghall" = new/datum/holodeck_program(/area/holodeck/source_meetinghall),
"Courtroom" = new/datum/holodeck_program(/area/holodeck/source_courtroom, list('sound/music/traitor.ogg')),
"Chessboard" = new/datum/holodeck_program(/area/holodeck/source_chess),
+ "Micro Building Area" = new/datum/holodeck_program(/area/holodeck/source_smoleworld), //VOREStation add
"Turn Off" = new/datum/holodeck_program(/area/holodeck/source_plating, list())
)
diff --git a/code/modules/hydroponics/grown_inedible.dm b/code/modules/hydroponics/grown_inedible.dm
index 0413fe50ac..3d096c7c37 100644
--- a/code/modules/hydroponics/grown_inedible.dm
+++ b/code/modules/hydroponics/grown_inedible.dm
@@ -8,13 +8,11 @@
var/plantname
var/potency = 1
-/obj/item/weapon/grown/New(newloc,planttype)
+/obj/item/weapon/grown/Initialize(ml, planttype)
- ..()
+ . = ..()
- var/datum/reagents/R = new/datum/reagents(50)
- reagents = R
- R.my_atom = src
+ create_reagents(50)
//Handle some post-spawn var stuff.
if(planttype)
diff --git a/code/modules/mining/ore_datum.dm b/code/modules/mining/ore_datum.dm
index 1ac742f211..0e125bee74 100644
--- a/code/modules/mining/ore_datum.dm
+++ b/code/modules/mining/ore_datum.dm
@@ -224,6 +224,7 @@ var/global/list/ore_data = list()
smelts_to = "titanium"
result_amount = 5
spread_chance = 12
+ alloy = 1
ore = /obj/item/weapon/ore/rutile
scan_icon = "mineral_uncommon"
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 016f17ae46..a59fddb75d 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -121,7 +121,7 @@
// Unclear why this isn't being grabbed by appearance.
if(ishuman(body))
var/mob/living/carbon/human/H = body
- overlays = H.overlays_standing
+ add_overlay(H.overlays_standing)
if(!T) T = pick(latejoin) //Safety in case we cannot find the body's position
forceMove(T)
@@ -915,4 +915,4 @@ mob/observer/dead/MayRespawn(var/feedback = 0)
/mob/observer/dead/verb/respawn()
set name = "Respawn"
set category = "Ghost"
- src.abandon_mob()
\ No newline at end of file
+ src.abandon_mob()
diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm
index a435d0e5bc..6813ae45e9 100644
--- a/code/modules/mob/holder.dm
+++ b/code/modules/mob/holder.dm
@@ -11,7 +11,7 @@ var/list/holder_mob_icon_cache = list()
show_messages = 1
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/head.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi'
)
diff --git a/code/modules/mob/language/station.dm b/code/modules/mob/language/station.dm
index e29eb54b63..0e1a2a0816 100644
--- a/code/modules/mob/language/station.dm
+++ b/code/modules/mob/language/station.dm
@@ -187,7 +187,7 @@
else
return pick(ai_names)
-/datum/language/seromi
+/datum/language/teshari
name = LANGUAGE_SCHECHI
desc = "A trilling language spoken by the diminutive Teshari."
speech_verb = "chirps"
@@ -203,7 +203,7 @@
"ci", "ri", "mi", "si", "ni", "ti", "li", "shi", "schi", "i", "i"
)
-/datum/language/seromi/get_random_name(gender)
+/datum/language/teshari/get_random_name(gender)
return ..(gender, 2, 4, 1.5)
diff --git a/code/modules/mob/language/station_vr.dm b/code/modules/mob/language/station_vr.dm
index 3dd70f910c..985212f501 100644
--- a/code/modules/mob/language/station_vr.dm
+++ b/code/modules/mob/language/station_vr.dm
@@ -164,7 +164,7 @@
flags = 0
/datum/language/skrell
flags = 0
-/datum/language/seromi
+/datum/language/teshari
flags = 0
/datum/language/zaddat
flags = 0
diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm
index d956a8e4af..4f8fa428de 100644
--- a/code/modules/mob/living/carbon/human/human_helpers.dm
+++ b/code/modules/mob/living/carbon/human/human_helpers.dm
@@ -190,6 +190,9 @@
//VOREStation Add - NIF Support
if(nif)
compiled_vis |= nif.planes_visible()
+ //event hud
+ if(vantag_hud)
+ compiled_vis |= VIS_CH_VANTAG
//VOREStation Add End
if(!compiled_vis.len && !vis_enabled.len)
diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
index ed7f36629c..53ef3070c4 100644
--- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
@@ -311,8 +311,8 @@
/datum/species/teshari
mob_size = MOB_SMALL //YW Edit: changed from MOB_MEDIUM to MOB_SMALL
spawn_flags = SPECIES_CAN_JOIN
- icobase = 'icons/mob/human_races/r_seromi_vr.dmi'
- deform = 'icons/mob/human_races/r_seromi_vr.dmi'
+ icobase = 'icons/mob/human_races/r_teshari_vr.dmi'
+ deform = 'icons/mob/human_races/r_teshari_vr.dmi'
icobase_tail = 1
color_mult = 1
min_age = 18
diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/teshari.dm
similarity index 94%
rename from code/modules/mob/living/carbon/human/species/station/seromi.dm
rename to code/modules/mob/living/carbon/human/species/station/teshari.dm
index 18448521ce..e33f8083fe 100644
--- a/code/modules/mob/living/carbon/human/species/station/seromi.dm
+++ b/code/modules/mob/living/carbon/human/species/station/teshari.dm
@@ -38,12 +38,12 @@
move_trail = /obj/effect/decal/cleanable/blood/tracks/paw
- icobase = 'icons/mob/human_races/r_seromi.dmi'
- deform = 'icons/mob/human_races/r_seromi.dmi'
- damage_overlays = 'icons/mob/human_races/masks/dam_seromi.dmi'
- damage_mask = 'icons/mob/human_races/masks/dam_mask_seromi.dmi'
- blood_mask = 'icons/mob/human_races/masks/blood_seromi.dmi'
- suit_storage_icon = 'icons/mob/species/seromi/belt_mirror.dmi'
+ icobase = 'icons/mob/human_races/r_teshari.dmi'
+ deform = 'icons/mob/human_races/r_teshari.dmi'
+ damage_overlays = 'icons/mob/human_races/masks/dam_teshari.dmi'
+ damage_mask = 'icons/mob/human_races/masks/dam_mask_teshari.dmi'
+ blood_mask = 'icons/mob/human_races/masks/blood_teshari.dmi'
+ suit_storage_icon = 'icons/mob/species/teshari/belt_mirror.dmi'
fire_icon_state = "generic" // Humanoid is too big for them and spriting a new one is really annoying.
@@ -107,15 +107,15 @@
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/seromi),
+ BP_HEAD = list("path" = /obj/item/organ/external/head/teshari),
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/seromi),
- BP_R_HAND = list("path" = /obj/item/organ/external/hand/right/seromi),
- BP_L_FOOT = list("path" = /obj/item/organ/external/foot/seromi),
- BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/seromi)
+ BP_L_HAND = list("path" = /obj/item/organ/external/hand/teshari),
+ BP_R_HAND = list("path" = /obj/item/organ/external/hand/right/teshari),
+ BP_L_FOOT = list("path" = /obj/item/organ/external/foot/teshari),
+ BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/teshari)
)
has_organ = list(
diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm
index a8d5abd6ec..009623598e 100644
--- a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm
+++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm
@@ -7,6 +7,29 @@
anchored = 1
density = 0
+/obj/effect/weaversilk/ex_act(severity)
+ qdel(src)
+ return
+
+/obj/effect/weaversilk/attackby(var/obj/item/weapon/W, var/mob/user)
+ user.setClickCooldown(user.get_attack_speed(W))
+
+ if(W.force)
+ visible_message("\The [src] has been [pick(W.attack_verb)] with \the [W][(user ? " by [user]." : ".")]")
+ qdel(src)
+
+/obj/effect/weaversilk/bullet_act(var/obj/item/projectile/Proj)
+ ..()
+ if(Proj.get_structure_damage())
+ qdel(src)
+
+/obj/effect/weaversilk/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
+ qdel(src)
+
+/obj/effect/weaversilk/attack_generic(mob/user as mob, var/damage)
+ if(damage)
+ qdel(src)
+
/obj/effect/weaversilk/attack_hand(mob/user as mob)
..()
if(user.a_intent == I_HURT)
@@ -82,11 +105,11 @@
"You hear a squishy noise!"
)
set_dir(L.dir)
- can_buckle = 1
+ can_buckle = TRUE
buckle_mob(L)
L.Stun(1 SECOND) //YW EDIT
to_chat(L, "The sticky fibers of \the [src] ensnare, trapping you in place!")
- trap_active = 0
+ trap_active = FALSE
can_buckle = initial(can_buckle)
desc += " Actually, it looks like it's been all spent."
..()
diff --git a/code/modules/mob/living/carbon/human/species/virtual_reality/opaque_form.dm b/code/modules/mob/living/carbon/human/species/virtual_reality/opaque_form.dm
index abf287c0fb..43210407bc 100644
--- a/code/modules/mob/living/carbon/human/species/virtual_reality/opaque_form.dm
+++ b/code/modules/mob/living/carbon/human/species/virtual_reality/opaque_form.dm
@@ -83,21 +83,21 @@
/datum/species/shapeshifter/promethean/avatar/teshari
name = "Virtual Reality Teshari"
- icobase = 'icons/mob/human_races/r_seromi.dmi'
- deform = 'icons/mob/human_races/r_seromi.dmi'
+ icobase = 'icons/mob/human_races/r_teshari.dmi'
+ deform = 'icons/mob/human_races/r_teshari.dmi'
appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_COLOR | HAS_EYE_COLOR
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/seromi),
+ BP_HEAD = list("path" = /obj/item/organ/external/head/teshari),
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/seromi),
- BP_R_HAND = list("path" = /obj/item/organ/external/hand/right/seromi),
- BP_L_FOOT = list("path" = /obj/item/organ/external/foot/seromi),
- BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/seromi)
+ BP_L_HAND = list("path" = /obj/item/organ/external/hand/teshari),
+ BP_R_HAND = list("path" = /obj/item/organ/external/hand/right/teshari),
+ BP_L_FOOT = list("path" = /obj/item/organ/external/foot/teshari),
+ BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/teshari)
)
/datum/species/shapeshifter/promethean/avatar/diona
diff --git a/code/modules/mob/mob_helpers_vr.dm b/code/modules/mob/mob_helpers_vr.dm
new file mode 100644
index 0000000000..f16a204153
--- /dev/null
+++ b/code/modules/mob/mob_helpers_vr.dm
@@ -0,0 +1,14 @@
+/mob/recalculate_vis()
+ . = ..()
+ if(!plane_holder || !vis_enabled)
+ return
+
+ if(vantag_hud)
+ if(!(VIS_CH_VANTAG in vis_enabled))
+ plane_holder.set_vis(VIS_CH_VANTAG,TRUE)
+ vis_enabled += VIS_CH_VANTAG
+ else
+ if(VIS_CH_VANTAG in vis_enabled)
+ plane_holder.set_vis(VIS_CH_VANTAG,FALSE)
+ vis_enabled -= VIS_CH_VANTAG
+ return
diff --git a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm
index fd23037699..f69ec4a574 100644
--- a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm
+++ b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm
@@ -97,6 +97,11 @@
icon_state = "eyes_sergal"
body_parts = list(BP_HEAD)
+/datum/sprite_accessory/marking/vr/closedeyes
+ name = "Closed Eyes"
+ icon_state = "eyes_closed"
+ body_parts = list(BP_HEAD)
+
/datum/sprite_accessory/marking/vr/brows
name = "Eyebrows"
icon_state = "brows"
diff --git a/code/modules/mob/new_player/sprite_accessories_tail.dm b/code/modules/mob/new_player/sprite_accessories_tail.dm
index 012591a895..0b8d75b84e 100644
--- a/code/modules/mob/new_player/sprite_accessories_tail.dm
+++ b/code/modules/mob/new_player/sprite_accessories_tail.dm
@@ -503,16 +503,16 @@
desc = ""
icon_state = "chimptail_s"
-/datum/sprite_accessory/tail/special/seromitail
- name = "seromi tail"
+/datum/sprite_accessory/tail/special/tesharitail
+ name = "teshari tail"
desc = ""
icon_state = "seromitail_s"
do_colouration = 1
color_blend_mode = ICON_MULTIPLY
species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3)
-/datum/sprite_accessory/tail/special/seromitailfeathered
- name = "seromi tail w/ feathers"
+/datum/sprite_accessory/tail/special/tesharitailfeathered
+ name = "teshari tail w/ feathers"
desc = ""
icon_state = "seromitail_s"
extra_overlay = "seromitail_feathers_s"
@@ -607,15 +607,15 @@
icon_state = "chimptail_hc_s"
do_colouration = 1
-/datum/sprite_accessory/tail/special/seromitailhc
- name = "seromi tail, colorable"
+/datum/sprite_accessory/tail/special/tesharitailhc
+ name = "teshari tail, colorable"
desc = ""
icon_state = "seromitail_hc_s"
do_colouration = 1
color_blend_mode = ICON_MULTIPLY
-/datum/sprite_accessory/tail/special/seromitailfeatheredhc
- name = "seromi tail w/ feathers, colorable"
+/datum/sprite_accessory/tail/special/tesharitailfeatheredhc
+ name = "teshari tail w/ feathers, colorable"
desc = ""
icon_state = "seromitail_feathers_hc_s"
do_colouration = 1
diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm
index 7f65e4e510..bf4a770f54 100644
--- a/code/modules/mob/typing_indicator.dm
+++ b/code/modules/mob/typing_indicator.dm
@@ -1,18 +1,20 @@
/proc/generate_speech_bubble(var/bubble_loc, var/speech_state, var/set_layer = FLOAT_LAYER)
var/image/I = image('icons/mob/talk_vr.dmi', bubble_loc, speech_state, set_layer) //VOREStation Edit - talk_vr.dmi instead of talk.dmi for right-side icons
- I.appearance_flags |= (KEEP_APART|RESET_COLOR|PIXEL_SCALE)
+ I.appearance_flags |= (RESET_COLOR|PIXEL_SCALE) //VOREStation Edit
+ /* //VOREStation Removal Start
if(istype(bubble_loc, /atom/movable))
var/atom/movable/AM = bubble_loc
var/x_scale = AM.get_icon_scale_x()
if(abs(x_scale) < 2) // reset transform on bubbles, except for the Very Large
I.pixel_z = (AM.icon_expected_height * (x_scale-1))
I.appearance_flags |= RESET_TRANSFORM
+ */ //VOREStation Removal Start
return I
/mob/proc/init_typing_indicator(var/set_state = "typing")
typing_indicator = new
typing_indicator.appearance = generate_speech_bubble(null, set_state)
- typing_indicator.appearance_flags |= (KEEP_APART|RESET_COLOR|RESET_TRANSFORM|PIXEL_SCALE)
+ typing_indicator.appearance_flags |= (RESET_COLOR|PIXEL_SCALE) //VOREStation Edit
/mob/proc/set_typing_indicator(var/state) //Leaving this here for mobs.
@@ -43,7 +45,7 @@
set_typing_indicator(TRUE)
var/message = input("","say (text)") as text
set_typing_indicator(FALSE)
-
+
if(message)
say_verb(message)
diff --git a/code/modules/multiz/turf.dm b/code/modules/multiz/turf.dm
index d09dc346e7..f34cae0065 100644
--- a/code/modules/multiz/turf.dm
+++ b/code/modules/multiz/turf.dm
@@ -39,7 +39,7 @@
..()
update()
-/turf/simulated/open/ChangeTurf()
+/turf/simulated/open/ChangeTurf(var/turf/N, var/tell_universe, var/force_lighting_update, var/preserve_outdoors)
var/turf/T = GetBelow(src)
if(T)
GLOB.turf_entered_event.unregister(T, src, .proc/BelowOpenUpdated)
diff --git a/code/modules/organs/robolimbs_custom.dm b/code/modules/organs/robolimbs_custom.dm
index 727db0927a..ba9704ffae 100644
--- a/code/modules/organs/robolimbs_custom.dm
+++ b/code/modules/organs/robolimbs_custom.dm
@@ -164,7 +164,7 @@ VS Edit - anyone can select these. */
icon = 'icons/mob/human_races/cyberlimbs/DSITeshari/dsi_teshari.dmi'
lifelike = 1
skin_tone = 1
- suggested_species = "Teshari"
+ suggested_species = SPECIES_TESHARI
/datum/robolimb/dsi_teshari/New()
species_cannot_use = GLOB.all_species.Copy()
diff --git a/code/modules/organs/subtypes/standard.dm b/code/modules/organs/subtypes/standard.dm
index 9e465ce8ba..bad69a2380 100644
--- a/code/modules/organs/subtypes/standard.dm
+++ b/code/modules/organs/subtypes/standard.dm
@@ -390,7 +390,7 @@
/obj/item/organ/external/head/skrell
eye_icon = "skrell_eyes_s"
-/obj/item/organ/external/head/seromi
+/obj/item/organ/external/head/teshari
eye_icon = "eyes_seromi"
/obj/item/organ/external/head/no_eyes
diff --git a/code/modules/organs/subtypes/teshari.dm b/code/modules/organs/subtypes/teshari.dm
new file mode 100644
index 0000000000..00f673482c
--- /dev/null
+++ b/code/modules/organs/subtypes/teshari.dm
@@ -0,0 +1,8 @@
+/obj/item/organ/external/foot/teshari
+ body_hair = "feathers"
+/obj/item/organ/external/foot/right/teshari
+ body_hair = "feathers"
+/obj/item/organ/external/hand/teshari
+ body_hair = "feathers"
+/obj/item/organ/external/hand/right/teshari
+ body_hair = "feathers"
diff --git a/code/modules/pda/pda.dm b/code/modules/pda/pda.dm
index f05a1056fd..298e8efd13 100644
--- a/code/modules/pda/pda.dm
+++ b/code/modules/pda/pda.dm
@@ -11,7 +11,7 @@ var/global/list/obj/item/device/pda/PDAs = list()
item_state = "electronic"
w_class = ITEMSIZE_SMALL
slot_flags = SLOT_ID | SLOT_BELT
- sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/id.dmi')
+ sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/teshari/id.dmi')
//Main variables
var/pdachoice = 1
@@ -139,8 +139,8 @@ var/global/list/obj/item/device/pda/PDAs = list()
desc = "A portable microcomputer by Thinktronic Systems, LTD. This model is a wrist-bound version."
slot_flags = SLOT_ID | SLOT_BELT | SLOT_GLOVES
sprite_sheets = list(
- SPECIES_TESHARI = 'icons/mob/species/seromi/pda_wrist.dmi',
- SPECIES_VR_TESHARI = 'icons/mob/species/seromi/pda_wrist.dmi',
+ SPECIES_TESHARI = 'icons/mob/species/teshari/pda_wrist.dmi',
+ SPECIES_VR_TESHARI = 'icons/mob/species/teshari/pda_wrist.dmi',
)
else
icon = 'icons/obj/pda_old.dmi'
diff --git a/code/modules/power/fusion/core/core_control.dm b/code/modules/power/fusion/core/core_control.dm
index c9ba42bbd5..e897dbd6ab 100644
--- a/code/modules/power/fusion/core/core_control.dm
+++ b/code/modules/power/fusion/core/core_control.dm
@@ -6,7 +6,7 @@
icon_keyboard = "tech_key"
icon_screen = "core_control"
-// var/id_tag
+ var/id_tag = ""
var/scan_range = 25
var/list/connected_devices = list()
var/obj/machinery/power/fusion_core/cur_viewed_device
@@ -15,6 +15,7 @@
/obj/machinery/computer/fusion_core_control/New()
..()
monitor = new(src)
+ monitor.core_tag = id_tag
/obj/machinery/computer/fusion_core_control/Destroy()
QDEL_NULL(monitor)
diff --git a/code/modules/power/fusion/fuel_assembly/fuel_control.dm b/code/modules/power/fusion/fuel_assembly/fuel_control.dm
index b0fbf33095..b5d039d5b2 100644
--- a/code/modules/power/fusion/fuel_assembly/fuel_control.dm
+++ b/code/modules/power/fusion/fuel_assembly/fuel_control.dm
@@ -13,6 +13,7 @@
/obj/machinery/computer/fusion_fuel_control/New()
..()
monitor = new(src)
+ monitor.fuel_tag = id_tag
/obj/machinery/computer/fusion_fuel_control/Destroy()
QDEL_NULL(monitor)
diff --git a/code/modules/power/fusion/gyrotron/gyrotron.dm b/code/modules/power/fusion/gyrotron/gyrotron.dm
index d4c995bf73..9621234007 100644
--- a/code/modules/power/fusion/gyrotron/gyrotron.dm
+++ b/code/modules/power/fusion/gyrotron/gyrotron.dm
@@ -23,17 +23,16 @@ GLOBAL_LIST_EMPTY(gyrotrons)
/obj/machinery/power/emitter/gyrotron/Initialize()
GLOB.gyrotrons += src
- update_active_power_usage(mega_energy * 50000)
default_apply_parts()
- . = ..()
+ return ..()
/obj/machinery/power/emitter/gyrotron/Destroy()
GLOB.gyrotrons -= src
return ..()
-/obj/machinery/power/emitter/gyrotron/process()
- update_active_power_usage(mega_energy * 50000)
- . = ..()
+/obj/machinery/power/emitter/gyrotron/proc/set_beam_power(var/new_power)
+ mega_energy = new_power
+ update_active_power_usage(mega_energy * initial(active_power_usage))
/obj/machinery/power/emitter/gyrotron/get_rand_burst_delay()
return rate * 10
diff --git a/code/modules/power/fusion/gyrotron/gyrotron_control.dm b/code/modules/power/fusion/gyrotron/gyrotron_control.dm
index e8daf7e0b9..1f06a4b6d1 100644
--- a/code/modules/power/fusion/gyrotron/gyrotron_control.dm
+++ b/code/modules/power/fusion/gyrotron/gyrotron_control.dm
@@ -14,6 +14,8 @@
/obj/machinery/computer/gyrotron_control/New()
..()
monitor = new(src)
+ monitor.gyro_tag = id_tag
+ monitor.scan_range = scan_range
/obj/machinery/computer/gyrotron_control/Destroy()
QDEL_NULL(monitor)
diff --git a/code/modules/tgui/modules/gyrotron_control.dm b/code/modules/tgui/modules/gyrotron_control.dm
index 192c6a0feb..2cb42eb45c 100644
--- a/code/modules/tgui/modules/gyrotron_control.dm
+++ b/code/modules/tgui/modules/gyrotron_control.dm
@@ -3,57 +3,52 @@
tgui_id = "GyrotronControl"
var/gyro_tag = ""
+ var/scan_range = 25
/datum/tgui_module/gyrotron_control/tgui_act(action, params)
if(..())
return TRUE
- for(var/parameter in params)
- to_world("[parameter] - [params[parameter]]")
+ // If the command requires a gyrotron, and we can't find it, we don't need to check any further
+ var/obj/machinery/power/emitter/gyrotron/G = null
+ if(params["gyro"])
+ G = locate(params["gyro"]) in GLOB.gyrotrons
+ if(!istype(G))
+ return FALSE
switch(action)
- if("toggle_active")
- var/obj/machinery/power/emitter/gyrotron/G = locate(params["gyro"])
- if(!istype(G))
- return 0
-
- G.activate(usr)
-
- return 1
-
if("set_tag")
var/new_ident = sanitize_text(input("Enter a new ident tag.", "Gyrotron Control", gyro_tag) as null|text)
if(new_ident)
gyro_tag = new_ident
+ return TRUE
+
+ if("toggle_active")
+ G.activate(usr)
+ return TRUE
if("set_str")
- var/obj/machinery/power/emitter/gyrotron/G = locate(params["gyro"])
- if(!istype(G))
- return 0
-
var/new_strength = params["str"]
-
- G.mega_energy = new_strength
-
- return 1
+ if(istext(new_strength))
+ new_strength = text2num(new_strength)
+ if(new_strength)
+ G.set_beam_power(new_strength)
+ return TRUE
if("set_rate")
- var/obj/machinery/power/emitter/gyrotron/G = locate(params["gyro"])
- if(!istype(G))
- return 0
-
var/new_delay = params["rate"]
-
- G.rate = new_delay
-
- return 1
+ if(istext(new_delay))
+ new_delay = text2num(new_delay)
+ if(new_delay)
+ G.rate = new_delay
+ return TRUE
/datum/tgui_module/gyrotron_control/tgui_data(mob/user)
var/list/data = list()
var/list/gyros = list()
for(var/obj/machinery/power/emitter/gyrotron/G in GLOB.gyrotrons)
- if(G.id_tag == gyro_tag)
+ if(G.id_tag == gyro_tag)// && (get_dist(get_turf(G), get_turf(src)) <= scan_range))
gyros.Add(list(list(
"name" = G.name,
"active" = G.active,
diff --git a/code/modules/tgui/modules/ntos-only/cardmod.dm b/code/modules/tgui/modules/ntos-only/cardmod.dm
index c5aecd8808..a05dbf0ff7 100644
--- a/code/modules/tgui/modules/ntos-only/cardmod.dm
+++ b/code/modules/tgui/modules/ntos-only/cardmod.dm
@@ -167,7 +167,7 @@
if("modify")
if(computer && computer.card_slot)
if(id_card)
- data_core.manifest_modify(id_card.registered_name, id_card.assignment)
+ data_core.manifest_modify(id_card.registered_name, id_card.assignment, id_card.rank)
computer.proc_eject_id(usr)
. = TRUE
if("terminate")
diff --git a/code/modules/tgui/modules/rustcore_monitor.dm b/code/modules/tgui/modules/rustcore_monitor.dm
index 4477c54d43..d4ea472a5b 100644
--- a/code/modules/tgui/modules/rustcore_monitor.dm
+++ b/code/modules/tgui/modules/rustcore_monitor.dm
@@ -8,22 +8,19 @@
if(..())
return TRUE
- for(var/parameter in params)
- to_world("[parameter] - [params[parameter]]")
+ var/obj/machinery/power/fusion_core/C = null
+ if(params["core"])
+ C = locate(params["core"]) in GLOB.fusion_cores
+ if(!istype(C))
+ return FALSE
switch(action)
if("toggle_active")
- var/obj/machinery/power/fusion_core/C = locate(params["core"])
- if(!istype(C))
- return FALSE
if(!C.Startup()) //Startup() whilst the device is active will return null.
C.Shutdown()
return TRUE
if("toggle_reactantdump")
- var/obj/machinery/power/fusion_core/C = locate(params["core"])
- if(!istype(C))
- return FALSE
C.reactant_dump = !C.reactant_dump
return TRUE
@@ -31,16 +28,11 @@
var/new_ident = sanitize_text(input("Enter a new ident tag.", "Core Control", core_tag) as null|text)
if(new_ident)
core_tag = new_ident
+ return TRUE
if("set_fieldstr")
- var/obj/machinery/power/fusion_core/C = locate(params["core"])
- if(!istype(C))
- return FALSE
-
var/new_strength = params["fieldstr"]
-
C.target_field_strength = new_strength
-
return TRUE
/datum/tgui_module/rustcore_monitor/tgui_data(mob/user)
@@ -59,9 +51,6 @@
"amount" = C.owned_field.dormant_reactant_quantities[reagent]
)))
- for(var/list/reactant in reactants)
- to_world("[reactant[1]] [reactant[2]]")
-
cores.Add(list(list(
"name" = C.name,
"has_field" = C.owned_field ? TRUE : FALSE,
diff --git a/code/modules/tgui/modules/rustfuel_control.dm b/code/modules/tgui/modules/rustfuel_control.dm
index 01029d6e85..54828c8ec1 100644
--- a/code/modules/tgui/modules/rustfuel_control.dm
+++ b/code/modules/tgui/modules/rustfuel_control.dm
@@ -8,12 +8,9 @@
if(..())
return TRUE
- for(var/parameter in params)
- to_world("[parameter] - [params[parameter]]")
-
switch(action)
if("toggle_active")
- var/obj/machinery/fusion_fuel_injector/FI = locate(params["fuel"])
+ var/obj/machinery/fusion_fuel_injector/FI = locate(params["fuel"]) in GLOB.fuel_injectors
if(!istype(FI))
return FALSE
diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index b3ff9c2837..593a54e52e 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -670,6 +670,9 @@
to_chat(src, "You can taste the flavor of really bad ideas.")
else if(istype(I,/obj/item/toy))
visible_message("[src] demonstrates their voracious capabilities by swallowing [I] whole!")
+ else if(istype(I,/obj/item/weapon/bikehorn/tinytether))
+ to_chat(src, "You feel a rush of power swallowing such a large, err, tiny structure.")
+ visible_message("[src] demonstrates their voracious capabilities by swallowing [I] whole!")
else if(istype(I,/obj/item/device/paicard) || istype(I,/obj/item/device/mmi/digital/posibrain) || istype(I,/obj/item/device/aicard))
visible_message("[src] demonstrates their voracious capabilities by swallowing [I] whole!")
to_chat(src, "You can taste the sweet flavor of digital friendship. Or maybe it is something else.")
diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
index ed17e11f97..4613b036f9 100644
--- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
@@ -1718,7 +1718,7 @@ Departamental Swimsuits, for general use
item_state = "latexmaid_mob"
sprite_sheets = list(
- "Teshari" = 'icons/vore/custom_clothes_tesh_vr.dmi'
+ SPECIES_TESHARI = 'icons/vore/custom_clothes_tesh_vr.dmi'
)
body_parts_covered = UPPER_TORSO|LOWER_TORSO
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index db685da1fa..5b0f2f115f 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -795,16 +795,6 @@
desc = "A primarily blue ID with a holographic 'WAH' etched onto its back. The letters do not obscure anything important on the card. It is shiny and it feels very bumpy."
title_strings = list("Amaya Rahl's Wah-identification card", "Amaya Rahl's Wah-ID card")
-//verysoft:Harmony - Custom ID (pilot)
-/obj/item/weapon/card/id/event/fluff/harmony
- registered_name = "CONFIGURE ME"
- assignment = "CONFIGURE ME"
- icon = 'icons/obj/card_vr.dmi'
- base_icon = 'icons/obj/card_vr.dmi'
- icon_state = "itg"
- desc = "A small card designating affiliation with the Ironcrest Transport Group. It has a NanoTrasen insignia and a lot of very small print on the back to do with practices and regulations for contractors to use."
- title_strings = list("Harmony's ITG-ID card")
-
//General use, Verk felt like sharing.
/obj/item/clothing/glasses/fluff/science_proper
name = "Aesthetic Science Goggles"
diff --git a/code/modules/vore/smoleworld/smoleworld_vr.dm b/code/modules/vore/smoleworld/smoleworld_vr.dm
new file mode 100644
index 0000000000..5e84d7cbd1
--- /dev/null
+++ b/code/modules/vore/smoleworld/smoleworld_vr.dm
@@ -0,0 +1,405 @@
+// future to do list for anyone who wants to try:
+//Make building turf enterable for small people.
+//Make buildings enterable then bustable from the inside.
+//Tiny cars drivable only by small people, wheel chair code.
+//Add details to planet foods as well as diversify options for cargo ordering.
+//make water turfs stomp and apply to player sprites.
+
+
+//turf items
+
+/turf/simulated/floor/smole
+ name = "toy floor"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "megablocksturf"
+ var/list/crossed_dirs = list()
+
+/turf/simulated/floor/smole/Entered(atom/A)
+ if(isliving(A))
+ var/mob/living/L = A
+ if(L.hovering) // Flying things shouldn't make footprints.
+ return ..()
+ if(L.get_effective_size() <= RESIZE_NORMAL)
+ return ..()
+ if(L.get_effective_size() >= RESIZE_A_BIGNORMAL)
+ playsound(src, 'sound/effects/footstep/giantstep_gigga.ogg', 35, 1, -1, volume_channel = VOLUME_CHANNEL_MASTER)
+ var/mdir = "[A.dir]"
+ crossed_dirs[mdir] = 1
+ update_icon()
+ . = ..()
+
+/turf/simulated/floor/smole/update_icon()
+ ..()
+ for(var/d in crossed_dirs)
+ add_overlay(image(icon = 'icons/vore/smoleworld_vr.dmi', icon_state = "stomp", dir = text2num(d)))
+
+//Extra micro turfs
+/turf/simulated/floor/smole/grass
+ name = "grass"
+ icon_state = "grass0"
+ initial_flooring = /decl/flooring/grass/outdoors
+
+/turf/simulated/floor/smole/desert
+ icon = 'icons/turf/desert.dmi'
+ icon_state = "desert"
+ initial_flooring = /decl/flooring/sand/desert
+
+/turf/simulated/floor/smole/megablocks
+ name = "block floor"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "megablocksturf"
+
+//Used to make smole objects be able to be built from menu
+
+/datum/material/smolebricks/generate_recipes()
+ recipes = list()
+ recipes += new/datum/stack_recipe("road straight", /obj/structure/smoletrack/roadS, 1, time = 5)
+ recipes += new/datum/stack_recipe("road threeway", /obj/structure/smoletrack/roadT, 1, time = 5)
+ recipes += new/datum/stack_recipe("road turn ", /obj/structure/smoletrack/roadturn, 1, time = 5)
+ recipes += new/datum/stack_recipe("road fourway", /obj/structure/smoletrack/roadF, 1, time = 5)
+ recipes += new/datum/stack_recipe("smole houses", /obj/structure/smolebuilding/houses, 2, time = 10)
+ recipes += new/datum/stack_recipe("smole business", /obj/structure/smolebuilding/business, 2, time = 10)
+ recipes += new/datum/stack_recipe("smole warehouses", /obj/structure/smolebuilding/warehouses, 2, time = 10)
+ recipes += new/datum/stack_recipe("smole musem", /obj/structure/smolebuilding/musem, 2, time = 10)
+
+/datum/material/smolebricks
+ name = "smolebricks"
+ stack_type = /obj/item/stack/material/smolebricks
+ icon_base = "solid"
+ icon_reinf = "reinf_over"
+ destruction_desc = "smashed"
+ sheet_singular_name = "bag"
+ sheet_plural_name = "bags"
+
+//the actual materials
+
+/obj/item/stack/material/smolebricks
+ name = "smolebricks"
+ desc = "A collection of tiny colored bricks ready to be built into whatever you want."
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "smolematerial"
+ drop_sound = 'sound/items/drop/smolematerial.ogg'
+ pickup_sound = 'sound/items/pickup/pillbottle.ogg'
+ default_type = "smolebricks"
+ w_class = ITEMSIZE_SMALL
+
+//smolebrick case to make for easy bricks.
+/obj/item/weapon/storage/smolebrickcase
+ name = "smolebrick case"
+ desc = "you feel the power of imagination."
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "smolestorage"
+ throw_speed = 1
+ throw_range = 4
+ w_class = ITEMSIZE_LARGE
+ max_w_class = ITEMSIZE_NORMAL
+ max_storage_space = ITEMSIZE_COST_SMALL * 7 // most code copied from toolbox
+ use_sound = 'sound/items/storage/smolecase.ogg'
+ drop_sound = 'sound/items/drop/device.ogg'
+ pickup_sound = 'sound/items/pickup/device.ogg'
+ starts_with = list( /obj/item/stack/material/smolebricks,
+ /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks,
+ /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks,
+ /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks, /obj/item/stack/material/smolebricks
+ )
+
+//Track code
+//defineing actions
+/obj/structure/smoletrack
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ density = 0
+
+/obj/structure/smoletrack/attack_hand(mob/user)
+ if(user.a_intent == I_DISARM)
+ if(ismouse(usr) || (isobserver(usr) && !config.ghost_interaction))
+ return
+ to_chat(user, "[src] was dismantaled into bricks.")
+ playsound(src, 'sound/items/smolesmallbuild.ogg', 50, 1, -1, volume_channel = VOLUME_CHANNEL_MASTER)
+ var/turf/simulated/floor/F = get_turf(src)
+ if(istype(F))
+ new /obj/item/stack/material/smolebricks(F)
+ qdel(src)
+
+/obj/structure/smoletrack/verb/rotate_clockwise()
+ set name = "Rotate Road Clockwise"
+ set category = "Object"
+ set src in oview(1)
+ if(ismouse(usr) || (isobserver(usr) && !config.ghost_interaction))
+ return
+ src.set_dir(turn(src.dir, 270))
+
+// Road pieces
+
+/obj/structure/smoletrack/roadS
+ name = "road straight piece"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "carstraight"
+ desc = "A long set of tiny road."
+ anchored = 1
+
+/obj/structure/smoletrack/roadT
+ name = "road threeway piece"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "carthreeway"
+ desc = "A tiny threeway road piece."
+ anchored = 1
+
+/obj/structure/smoletrack/roadturn
+ name = "road turn piece"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "carturn"
+ desc = "A tiny turn road piece."
+ anchored = 1
+
+/obj/structure/smoletrack/roadF
+ name = "road fourway piece"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "carfourway"
+ desc = "A fourway road piece."
+ anchored = 1
+
+//buildings code
+//Defining building actions
+/obj/structure/smolebuilding
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ density = 1
+ anchored = 1
+ var/health = 75
+ var/damage
+//makes it so buildings can be dismaintaled or GodZilla style attacked
+/obj/structure/smolebuilding/attack_hand(mob/user)
+ if(user.a_intent == I_DISARM)
+ if(ismouse(usr) || (isobserver(usr) && !config.ghost_interaction))
+ return
+ to_chat(user, "[src] was dismantaled into bricks.")
+ playsound(src, 'sound/items/smolesmallbuild.ogg', 50, 1, -1, volume_channel = VOLUME_CHANNEL_MASTER)
+ if(!isnull(loc))
+ new /obj/item/stack/material/smolebricks(loc)
+ new /obj/item/stack/material/smolebricks(loc)
+ qdel(src)
+
+ else if (usr.a_intent == I_HURT)
+
+ if(ismouse(usr) || (isobserver(usr) && !config.ghost_interaction))
+ return
+
+ take_damage()
+ playsound(src, 'sound/items/smolebuildinghit2.ogg', 50, 1)
+ user.do_attack_animation(src)
+ usr.visible_message("\The [usr] bangs against \the [src]!",
+ "You bang against \the [src]!",
+ "You hear a banging sound.")
+ else
+ usr.visible_message("[usr.name] knocks on the [src.name].",
+ "You knock on the [src.name].")
+ return
+
+//takes 3 normal attacks
+/obj/structure/smolebuilding/take_damage()
+ damage = 25
+ health = health - damage
+
+ if(health <= 0)
+ dismantle()
+ else
+ return
+ return
+//results of attacks will remove building and spawn in ruins.
+/obj/structure/smolebuilding/proc/dismantle()
+ visible_message("\The [src] falls apart!")
+ playsound(src, 'sound/items/smolebuildingdestoryed.ogg', 50, 1, -1, volume_channel = VOLUME_CHANNEL_MASTER)
+ new /obj/structure/smoleruins(loc)
+ qdel(src)
+ return
+
+//checks for items and does the same as dismaintle but spawns material instead.
+/obj/structure/smolebuilding/attackby(obj/item/weapon/W as obj, mob/user as mob)
+ dismantle()
+ return
+//checks for projectile damage and does the same as dismaintle but spawns material instead.
+/obj/structure/smolebuilding/bullet_act(var/obj/item/projectile/Proj)
+ displode()
+ return
+//is the same as dismaintal but instead of ruins it just makes it all explode
+/obj/structure/smolebuilding/proc/displode()
+ visible_message("\The [src] explodes into pieces!")
+ playsound(src, 'sound/items/smolebuildingdestoryedshort.ogg', 50, 1, -1, volume_channel = VOLUME_CHANNEL_MASTER)
+ new /obj/item/stack/material/smolebricks(loc)
+ new /obj/item/stack/material/smolebricks(loc)
+ qdel(src)
+ return
+
+//get material from ruins
+/obj/structure/smoleruins/attack_hand(mob/user)
+ if(user.a_intent == I_DISARM)
+ if(ismouse(usr) || (isobserver(usr) && !config.ghost_interaction))
+ return
+ to_chat(user, "[src] was dismantaled into bricks.")
+ playsound(src, 'sound/items/smolelargeunbuild.ogg', 50, 1, volume_channel = VOLUME_CHANNEL_MASTER)
+ if(!isnull(loc))
+ new /obj/item/stack/material/smolebricks(loc)
+ new /obj/item/stack/material/smolebricks(loc)
+ qdel(src)
+
+//Ruins go asplode same as buildings if attacked
+/obj/structure/smoleruins/attackby(obj/item/weapon/W as obj, mob/user as mob)
+ displode()
+ return
+
+/obj/structure/smoleruins/bullet_act(var/obj/item/projectile/Proj)
+ displode()
+ return
+
+/obj/structure/smoleruins/proc/displode()
+ visible_message("\The [src] explodes into pieces!")
+ playsound(src, 'sound/items/smolebuildingdestoryedshort.ogg', 50, 1, -1, volume_channel = VOLUME_CHANNEL_MASTER)
+ new /obj/item/stack/material/smolebricks(loc)
+ new /obj/item/stack/material/smolebricks(loc)
+ qdel(src)
+ return
+
+//buildings
+/obj/structure/smoleruins
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "ruins"
+ density = 0
+
+/obj/structure/smolebuilding/houses
+ name = "smole houses"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "smolehouses"
+
+/obj/structure/smolebuilding/business
+ name = "smole business"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "smolebusiness"
+
+/obj/structure/smolebuilding/warehouses
+ name = "smole warehouses"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "smolewarehouses"
+
+/obj/structure/smolebuilding/musem
+ name = "smole musem"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "smolemusem"
+//
+//CAR STUFF < WILL BE MESSED WITH IN A LATER UPDATE COMMENTED OUT FOR NOW
+///obj/item/smolecar
+// name = "toy car"
+// desc = "A toy car ready to be snapped together and burn rubber!"
+// icon = 'icons/vore/smoleworld_vr.dmi'
+// icon_state = "smolecarA_folded"
+// item_state = "smolecarA"
+// unfolded_type = /obj/structure/bed/chair/wheelchair/smolecar
+//
+///obj/structure/smolecar
+// name = "Toy Car"
+// desc = "Lets burn rubber!"
+// icon = 'icons/vore/smoleworld_vr.dmi'
+// icon_state = "smolecarA"
+// anchored = 0
+// buckle_movable = 1
+// var/carry_type = /obj/item/smolecar
+//
+///obj/structure/bed/chair/wheelchair/smolecar/can_buckle_check(mob/living/M, forced = FALSE)
+// . = ..()
+// if(.)
+//
+// if(M.get_effective_size() > RESIZE_TINY)
+// to_chat(M, SPAN_WARNING("You are to big to fit in \the [src]."))
+ // . = FALSE
+//
+//
+//snack planets, currently just plopped out will be organized later.
+/obj/item/trash/Asteroidsmall
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_asteriodB"
+ name = "asteriod"
+ desc = "A solid chunk of candy crumb that looks like a asteriod."
+
+/obj/item/trash/Asteroidlarge
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_asteriodA"
+ name = "asteriod"
+ desc = "A solid chunk of candy crumb that looks like a asteriod."
+
+/obj/item/trash/Asteroidmulti
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_asteriodC"
+ name = "asteriod"
+ desc = "Several chunks of sugar crumbs that looks like asteriods."
+
+/obj/item/weapon/bikehorn/tinytether
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "tether_trash"
+ name = "tether"
+ desc = "Its a tiny bit of plastic in the shape of the tether. There seems to be a small button on top."
+
+/obj/item/weapon/bikehorn/tinytether/attack_self(mob/user as mob)
+ if(spam_flag == 0)
+ spam_flag = 1
+ playsound(src, 'sound/items/tinytether.ogg', 30, 1, volume_channel = VOLUME_CHANNEL_MASTER)
+ src.add_fingerprint(user)
+ spawn(20)
+ spam_flag = 0
+ return
+
+/obj/item/weapon/reagent_containers/food/snacks/snackplanet/moon
+ name = "moon"
+ desc = "A firm solid mass of white powdery sugar in the shape of a moon!"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_moon"
+ bitesize = 1
+ trash = /obj/item/trash/Asteroidsmall
+ nutriment_amt = 2
+ nutriment_desc = list("sugar" = 2)
+ drop_sound = 'sound/items/drop/basketball.ogg'
+
+/obj/item/weapon/reagent_containers/food/snacks/snackplanet/virgo3b
+ name = "virgo3bB"
+ desc = "A sticky jelly jaw breaker in the shape of Virgo3B, it even has a tiny tether!"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_Virgo3B"
+ bitesize = 3
+ trash = /obj/item/weapon/bikehorn/tinytether
+ nutriment_amt = 2
+ nutriment_desc = list("spicy" = 2, "tang" = 2)
+ drop_sound = 'sound/items/drop/basketball.ogg'
+
+/obj/item/weapon/reagent_containers/food/snacks/snackplanet/phoron
+ name = "phoron giant"
+ desc = "A spicy jaw breaker that seems to swirl in the light."
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_phoron"
+ bitesize = 3
+ trash = /obj/item/trash/Asteroidmulti
+ nutriment_amt = 2
+ nutriment_desc = list("spicy" = 2)
+ drop_sound = 'sound/items/drop/basketball.ogg'
+
+/obj/item/weapon/reagent_containers/food/snacks/snackplanet/virgoprime
+ name = "virgo prime"
+ desc = "Its a orange jaw breaker in the shape Virgo Prime!"
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_virgoprime"
+ bitesize = 3
+ trash = /obj/item/trash/Asteroidmulti
+ nutriment_amt = 2
+ nutriment_desc = list("salty" = 2)
+ drop_sound = 'sound/items/drop/basketball.ogg'
+
+/obj/item/weapon/storage/bagoplanets
+ name = "bag o' planets"
+ desc = "A cosmic bag of fist sized candy planets."
+ icon = 'icons/vore/smoleworld_vr.dmi'
+ icon_state = "sp_storage"
+ w_class = ITEMSIZE_LARGE
+ max_w_class = ITEMSIZE_NORMAL
+ max_storage_space = ITEMSIZE_COST_SMALL * 7 // most code copied from toolbox
+ drop_sound = 'sound/items/drop/food.ogg'
+ pickup_sound = 'sound/items/pickup/food.ogg'
+ starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/snackplanet/phoron,
+ /obj/item/weapon/reagent_containers/food/snacks/snackplanet/virgo3b,/obj/item/weapon/reagent_containers/food/snacks/snackplanet/moon,
+ /obj/item/weapon/reagent_containers/food/snacks/snackplanet/virgoprime
+ )
diff --git a/code/unit_tests/integrated_circuits/prefabs.dm b/code/unit_tests/integrated_circuits/prefabs.dm
index 056c0d1568..04b3136640 100644
--- a/code/unit_tests/integrated_circuits/prefabs.dm
+++ b/code/unit_tests/integrated_circuits/prefabs.dm
@@ -3,8 +3,9 @@
/datum/unit_test/integrated_circuit_prefabs_shall_respect_complexity_and_size_contraints/start_test()
var/list/failed_prefabs = list()
- for(var/prefab_type in subtypesof(/decl/prefab/ic_assembly))
- var/decl/prefab/ic_assembly/prefab = decls_repository.get_decl(prefab_type)
+ var/list/prefab_types = decls_repository.get_decls_of_subtype(/decl/prefab/ic_assembly)
+ for(var/prefab_type in prefab_types)
+ var/decl/prefab/ic_assembly/prefab = prefab_types[prefab_type]
var/obj/item/device/electronic_assembly/assembly = prefab.assembly_type
var/available_size = initial(assembly.max_components)
@@ -33,9 +34,9 @@
/datum/unit_test/integrated_circuit_prefabs_shall_not_fail_to_create/start_test()
var/list/failed_prefabs = list()
- for(var/prefab_type in subtypesof(/decl/prefab/ic_assembly))
- var/decl/prefab/ic_assembly/prefab = decls_repository.get_decl(prefab_type)
-
+ var/list/prefab_types = decls_repository.get_decls_of_subtype(/decl/prefab/ic_assembly)
+ for(var/prefab_type in prefab_types)
+ var/decl/prefab/ic_assembly/prefab = prefab_types[prefab_type]
try
var/built_item = prefab.create(get_standard_turf())
if(built_item)
diff --git a/icons/mob/human_races/masks/blood_seromi.dmi b/icons/mob/human_races/masks/blood_teshari.dmi
similarity index 100%
rename from icons/mob/human_races/masks/blood_seromi.dmi
rename to icons/mob/human_races/masks/blood_teshari.dmi
diff --git a/icons/mob/human_races/masks/dam_mask_seromi.dmi b/icons/mob/human_races/masks/dam_mask_teshari.dmi
similarity index 100%
rename from icons/mob/human_races/masks/dam_mask_seromi.dmi
rename to icons/mob/human_races/masks/dam_mask_teshari.dmi
diff --git a/icons/mob/human_races/masks/dam_seromi.dmi b/icons/mob/human_races/masks/dam_teshari.dmi
similarity index 100%
rename from icons/mob/human_races/masks/dam_seromi.dmi
rename to icons/mob/human_races/masks/dam_teshari.dmi
diff --git a/icons/mob/human_races/r_seromi.dmi b/icons/mob/human_races/r_teshari.dmi
similarity index 100%
rename from icons/mob/human_races/r_seromi.dmi
rename to icons/mob/human_races/r_teshari.dmi
diff --git a/icons/mob/human_races/r_seromi_vr.dmi b/icons/mob/human_races/r_teshari_vr.dmi
similarity index 100%
rename from icons/mob/human_races/r_seromi_vr.dmi
rename to icons/mob/human_races/r_teshari_vr.dmi
diff --git a/icons/mob/species/seromi/back.dmi b/icons/mob/species/teshari/back.dmi
similarity index 100%
rename from icons/mob/species/seromi/back.dmi
rename to icons/mob/species/teshari/back.dmi
diff --git a/icons/mob/species/seromi/belt.dmi b/icons/mob/species/teshari/belt.dmi
similarity index 100%
rename from icons/mob/species/seromi/belt.dmi
rename to icons/mob/species/teshari/belt.dmi
diff --git a/icons/mob/species/seromi/belt_mirror.dmi b/icons/mob/species/teshari/belt_mirror.dmi
similarity index 100%
rename from icons/mob/species/seromi/belt_mirror.dmi
rename to icons/mob/species/teshari/belt_mirror.dmi
diff --git a/icons/mob/species/seromi/deptcloak.dmi b/icons/mob/species/teshari/deptcloak.dmi
similarity index 100%
rename from icons/mob/species/seromi/deptcloak.dmi
rename to icons/mob/species/teshari/deptcloak.dmi
diff --git a/icons/mob/species/seromi/deptjacket.dmi b/icons/mob/species/teshari/deptjacket.dmi
similarity index 100%
rename from icons/mob/species/seromi/deptjacket.dmi
rename to icons/mob/species/teshari/deptjacket.dmi
diff --git a/icons/mob/species/seromi/ears.dmi b/icons/mob/species/teshari/ears.dmi
similarity index 100%
rename from icons/mob/species/seromi/ears.dmi
rename to icons/mob/species/teshari/ears.dmi
diff --git a/icons/mob/species/seromi/eyes.dmi b/icons/mob/species/teshari/eyes.dmi
similarity index 100%
rename from icons/mob/species/seromi/eyes.dmi
rename to icons/mob/species/teshari/eyes.dmi
diff --git a/icons/mob/species/seromi/gloves.dmi b/icons/mob/species/teshari/gloves.dmi
similarity index 100%
rename from icons/mob/species/seromi/gloves.dmi
rename to icons/mob/species/teshari/gloves.dmi
diff --git a/icons/mob/species/seromi/handcuffs.dmi b/icons/mob/species/teshari/handcuffs.dmi
similarity index 100%
rename from icons/mob/species/seromi/handcuffs.dmi
rename to icons/mob/species/teshari/handcuffs.dmi
diff --git a/icons/mob/species/seromi/head.dmi b/icons/mob/species/teshari/head.dmi
similarity index 100%
rename from icons/mob/species/seromi/head.dmi
rename to icons/mob/species/teshari/head.dmi
diff --git a/icons/mob/species/seromi/helmet_vr.dmi b/icons/mob/species/teshari/helmet_vr.dmi
similarity index 100%
rename from icons/mob/species/seromi/helmet_vr.dmi
rename to icons/mob/species/teshari/helmet_vr.dmi
diff --git a/icons/mob/species/seromi/id.dmi b/icons/mob/species/teshari/id.dmi
similarity index 100%
rename from icons/mob/species/seromi/id.dmi
rename to icons/mob/species/teshari/id.dmi
diff --git a/icons/mob/species/seromi/masks.dmi b/icons/mob/species/teshari/masks.dmi
similarity index 100%
rename from icons/mob/species/seromi/masks.dmi
rename to icons/mob/species/teshari/masks.dmi
diff --git a/icons/mob/species/seromi/masks_vr.dmi b/icons/mob/species/teshari/masks_vr.dmi
similarity index 100%
rename from icons/mob/species/seromi/masks_vr.dmi
rename to icons/mob/species/teshari/masks_vr.dmi
diff --git a/icons/mob/species/seromi/pda_wrist.dmi b/icons/mob/species/teshari/pda_wrist.dmi
similarity index 100%
rename from icons/mob/species/seromi/pda_wrist.dmi
rename to icons/mob/species/teshari/pda_wrist.dmi
diff --git a/icons/mob/species/seromi/pilot_helmet.dmi b/icons/mob/species/teshari/pilot_helmet.dmi
similarity index 100%
rename from icons/mob/species/seromi/pilot_helmet.dmi
rename to icons/mob/species/teshari/pilot_helmet.dmi
diff --git a/icons/mob/species/seromi/shoes.dmi b/icons/mob/species/teshari/shoes.dmi
similarity index 100%
rename from icons/mob/species/seromi/shoes.dmi
rename to icons/mob/species/teshari/shoes.dmi
diff --git a/icons/mob/species/seromi/suit.dmi b/icons/mob/species/teshari/suit.dmi
similarity index 100%
rename from icons/mob/species/seromi/suit.dmi
rename to icons/mob/species/teshari/suit.dmi
diff --git a/icons/mob/species/seromi/suit_vr.dmi b/icons/mob/species/teshari/suit_vr.dmi
similarity index 100%
rename from icons/mob/species/seromi/suit_vr.dmi
rename to icons/mob/species/teshari/suit_vr.dmi
diff --git a/icons/mob/species/seromi/suit_yw.dmi b/icons/mob/species/teshari/suit_yw.dmi
similarity index 100%
rename from icons/mob/species/seromi/suit_yw.dmi
rename to icons/mob/species/teshari/suit_yw.dmi
diff --git a/icons/mob/species/seromi/teshari_cloak.dmi b/icons/mob/species/teshari/teshari_cloak.dmi
similarity index 100%
rename from icons/mob/species/seromi/teshari_cloak.dmi
rename to icons/mob/species/teshari/teshari_cloak.dmi
diff --git a/icons/mob/species/seromi/teshari_cloak_yw.dmi b/icons/mob/species/teshari/teshari_cloak_yw.dmi
similarity index 100%
rename from icons/mob/species/seromi/teshari_cloak_yw.dmi
rename to icons/mob/species/teshari/teshari_cloak_yw.dmi
diff --git a/icons/mob/species/seromi/teshari_hood.dmi b/icons/mob/species/teshari/teshari_hood.dmi
similarity index 100%
rename from icons/mob/species/seromi/teshari_hood.dmi
rename to icons/mob/species/teshari/teshari_hood.dmi
diff --git a/icons/mob/species/seromi/teshari_hood_yw.dmi b/icons/mob/species/teshari/teshari_hood_yw.dmi
similarity index 100%
rename from icons/mob/species/seromi/teshari_hood_yw.dmi
rename to icons/mob/species/teshari/teshari_hood_yw.dmi
diff --git a/icons/mob/species/seromi/teshari_uniform.dmi b/icons/mob/species/teshari/teshari_uniform.dmi
similarity index 100%
rename from icons/mob/species/seromi/teshari_uniform.dmi
rename to icons/mob/species/teshari/teshari_uniform.dmi
diff --git a/icons/mob/species/seromi/ties.dmi b/icons/mob/species/teshari/ties.dmi
similarity index 100%
rename from icons/mob/species/seromi/ties.dmi
rename to icons/mob/species/teshari/ties.dmi
diff --git a/icons/mob/species/seromi/ties_vr.dmi b/icons/mob/species/teshari/ties_vr.dmi
similarity index 100%
rename from icons/mob/species/seromi/ties_vr.dmi
rename to icons/mob/species/teshari/ties_vr.dmi
diff --git a/icons/mob/species/seromi/uniform.dmi b/icons/mob/species/teshari/uniform.dmi
similarity index 100%
rename from icons/mob/species/seromi/uniform.dmi
rename to icons/mob/species/teshari/uniform.dmi
diff --git a/icons/obj/card_alt_vr.dmi b/icons/obj/card_alt_vr.dmi
new file mode 100644
index 0000000000..a82caf9bc4
Binary files /dev/null and b/icons/obj/card_alt_vr.dmi differ
diff --git a/icons/obj/clothing/species/seromi/hats.dmi b/icons/obj/clothing/species/teshari/hats.dmi
similarity index 100%
rename from icons/obj/clothing/species/seromi/hats.dmi
rename to icons/obj/clothing/species/teshari/hats.dmi
diff --git a/icons/obj/clothing/species/seromi/suits.dmi b/icons/obj/clothing/species/teshari/suits.dmi
similarity index 100%
rename from icons/obj/clothing/species/seromi/suits.dmi
rename to icons/obj/clothing/species/teshari/suits.dmi
diff --git a/icons/obj/clothing/species/seromi/uniform.dmi b/icons/obj/clothing/species/teshari/uniform.dmi
similarity index 100%
rename from icons/obj/clothing/species/seromi/uniform.dmi
rename to icons/obj/clothing/species/teshari/uniform.dmi
diff --git a/icons/vore/smoleworld_vr.dmi b/icons/vore/smoleworld_vr.dmi
new file mode 100644
index 0000000000..206c0cef32
Binary files /dev/null and b/icons/vore/smoleworld_vr.dmi differ
diff --git a/maps/offmap_vr/om_ships/mercship.dm b/maps/offmap_vr/om_ships/mercship.dm
index 7f056e8d6d..e4bc8477d1 100644
--- a/maps/offmap_vr/om_ships/mercship.dm
+++ b/maps/offmap_vr/om_ships/mercship.dm
@@ -6,7 +6,7 @@
// Map template for spawning the shuttle
/datum/map_template/om_ships/syndicatecarrier
- name = "OM Ship - Mercenary Ship (New Z)"
+ name = "OM Ship - Generic Cruiser (New Z)"
desc = "Mercenary Ship."
mappath = 'mercship.dmm'
diff --git a/maps/offmap_vr/om_ships/shelter_6.dmm b/maps/offmap_vr/om_ships/shelter_6.dmm
index 93d7e9dedf..132d4b6c49 100644
--- a/maps/offmap_vr/om_ships/shelter_6.dmm
+++ b/maps/offmap_vr/om_ships/shelter_6.dmm
@@ -501,6 +501,171 @@
},
/turf/simulated/floor/reinforced,
/area/shuttle/tabiranth)
+"ay" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/device/perfect_tele,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/backpack/ert/commander,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact/flash,
+/obj/item/ammo_magazine/m9mm/compact/flash,
+/obj/item/ammo_magazine/m9mm/compact/flash,
+/obj/item/ammo_magazine/m9mm/compact/rubber,
+/obj/item/ammo_magazine/m9mm/compact/rubber,
+/obj/item/ammo_magazine/m9mm/compact/rubber,
+/obj/item/ammo_magazine/m9mm/compact/practice,
+/obj/item/ammo_magazine/m9mm/compact/practice,
+/obj/item/ammo_magazine/m9mm/compact/practice,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxurybar,
+/obj/item/device/survivalcapsule/luxurybar,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/clothing/suit/space/void/refurb/officer,
+/obj/item/modular_computer/laptop/preset/custom_loadout/hybrid,
+/obj/item/weapon/gun/magnetic/railgun/automatic,
+/obj/item/weapon/gun/magnetic/railgun/automatic,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/tabiranth)
"aA" = (
/obj/machinery/atmospherics/portables_connector,
/obj/machinery/portable_atmospherics/canister/air{
@@ -719,168 +884,6 @@
/obj/machinery/sleeper/survival_pod,
/turf/simulated/floor/tiled/white,
/area/shuttle/tabiranth)
-"aO" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/device/perfect_tele,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/backpack/ert/commander,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/projectile/pistol,
-/obj/item/weapon/gun/projectile/pistol,
-/obj/item/weapon/gun/projectile/pistol,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact/flash,
-/obj/item/ammo_magazine/m9mm/compact/flash,
-/obj/item/ammo_magazine/m9mm/compact/flash,
-/obj/item/ammo_magazine/m9mm/compact/rubber,
-/obj/item/ammo_magazine/m9mm/compact/rubber,
-/obj/item/ammo_magazine/m9mm/compact/rubber,
-/obj/item/ammo_magazine/m9mm/compact/practice,
-/obj/item/ammo_magazine/m9mm/compact/practice,
-/obj/item/ammo_magazine/m9mm/compact/practice,
-/obj/item/clothing/glasses/thermal,
-/obj/item/clothing/glasses/thermal,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxurybar,
-/obj/item/device/survivalcapsule/luxurybar,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/clothing/suit/space/void/refurb/officer,
-/turf/simulated/floor/tiled/white,
-/area/shuttle/tabiranth)
"aP" = (
/obj/machinery/telecomms/allinone,
/turf/simulated/floor/bluegrid,
@@ -1377,7 +1380,7 @@
/obj/item/device/radio/uplink,
/obj/item/device/spaceflare,
/obj/item/device/spaceflare,
-/obj/item/device/perfect_tele/frontier/unknown/four,
+/obj/item/device/perfect_tele/frontier/unknown/six,
/obj/item/device/healthanalyzer/phasic,
/obj/item/device/bluespaceradio/tether_prelinked,
/obj/item/weapon/cat_box,
@@ -1871,7 +1874,7 @@ av
aA
aF
ad
-aO
+ay
aC
bb
ac
diff --git a/maps/southern_cross/items/clothing/sc_accessory.dm b/maps/southern_cross/items/clothing/sc_accessory.dm
index 67dd36ec89..66d977ffc2 100644
--- a/maps/southern_cross/items/clothing/sc_accessory.dm
+++ b/maps/southern_cross/items/clothing/sc_accessory.dm
@@ -10,5 +10,5 @@
desc = "Sturdy mess of black synthcotton belts and buckles."
icon_state = "pilot_webbing2"
sprite_sheets = list(
- "Teshari" = 'icons/mob/species/seromi/ties.dmi'
- )
\ No newline at end of file
+ SPECIES_TESHARI = 'icons/mob/species/teshari/ties.dmi'
+ )
\ No newline at end of file
diff --git a/maps/southern_cross/items/clothing/sc_suit.dm b/maps/southern_cross/items/clothing/sc_suit.dm
index 204db3afd1..2b15324f4d 100644
--- a/maps/southern_cross/items/clothing/sc_suit.dm
+++ b/maps/southern_cross/items/clothing/sc_suit.dm
@@ -8,8 +8,8 @@
item_state_slots = list(slot_r_hand_str = "brown_jacket", slot_l_hand_str = "brown_jacket")
icon = 'maps/southern_cross/icons/obj/sc_suit.dmi'
sprite_sheets = list(
- "Teshari" = 'maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi'
- )
+ SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi'
+ )
min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE
//Misc
diff --git a/maps/southern_cross/items/clothing/sc_under.dm b/maps/southern_cross/items/clothing/sc_under.dm
index 3f7f7eb1a8..ea024abe7a 100644
--- a/maps/southern_cross/items/clothing/sc_under.dm
+++ b/maps/southern_cross/items/clothing/sc_under.dm
@@ -8,8 +8,8 @@
item_icons = list(slot_w_uniform_str = 'maps/southern_cross/icons/mob/sc_under.dmi')
icon = 'maps/southern_cross/icons/obj/sc_uniforms.dmi'
sprite_sheets = list(
- "Teshari" = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi'
- )
+ SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi'
+ )
starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot1)
/obj/item/clothing/under/rank/pilot1/no_webbing
@@ -25,8 +25,8 @@
item_icons = list(slot_w_uniform_str = 'maps/southern_cross/icons/mob/sc_under.dmi')
icon = 'maps/southern_cross/icons/obj/sc_uniforms.dmi'
sprite_sheets = list(
- "Teshari" = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi'
- )
+ SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi'
+ )
starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot2)
/obj/item/clothing/under/rank/pilot2/no_webbing
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 7a06ab20d5..6ba2b3f2f9 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -102,6 +102,10 @@
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"aq" = (
+/obj/machinery/telecomms/relay/preset/tether,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"ax" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4
@@ -298,10 +302,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/hallways_aft)
-"cL" = (
-/obj/machinery/telecomms/allinone/ert,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/atmos)
"cO" = (
/obj/machinery/computer/operating,
/turf/simulated/floor/tiled/white,
@@ -734,7 +734,7 @@
/obj/mecha/combat/gygax/serenity,
/obj/effect/floor_decal/industrial/outline,
/obj/machinery/button/remote/blast_door{
- description_fluff = "\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
dir = 4;
id = "NRV_MECHS";
name = "MECH BAY CONTROL";
@@ -1168,10 +1168,6 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
-"kd" = (
-/obj/item/device/multitool/tether_buffered,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/atmos)
"kf" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/projectile/automatic/pdw,
@@ -5402,7 +5398,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/button/remote/blast_door{
- description_fluff = "\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
dir = 1;
id = "NRV_DELTA";
name = "DELTA ACCESS CONTROL";
@@ -6813,10 +6809,6 @@
/obj/structure/curtain/open/bed,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
-"Wd" = (
-/obj/machinery/telecomms/relay,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/atmos)
"Wj" = (
/obj/machinery/light/no_nightshift{
dir = 8
@@ -13444,8 +13436,8 @@ pV
kP
kP
rS
-Wd
-kd
+aq
+gA
CT
qR
pV
@@ -14013,7 +14005,7 @@ ls
ls
ls
Lm
-cL
+gA
DQ
Ip
pV
diff --git a/maps/expedition_vr/space/_guttersite.dm b/maps/submaps/admin_use_vr/guttersite.dm
similarity index 81%
rename from maps/expedition_vr/space/_guttersite.dm
rename to maps/submaps/admin_use_vr/guttersite.dm
index 655c067f26..23c54af980 100644
--- a/maps/expedition_vr/space/_guttersite.dm
+++ b/maps/submaps/admin_use_vr/guttersite.dm
@@ -49,40 +49,40 @@
//TFF 26/12/19 - Sub-areas for the APCs.
/area/tether_away/guttersite/engines
- name = "POI - Gutter Engineering"
+ name = "Gutter - Gutter Engineering"
/area/tether_away/guttersite/security
- name = "POI - Gutter Security and Holding"
+ name = "Gutter - Gutter Security and Holding"
/area/tether_away/guttersite/docking
- name = "POI - Gutter Docks"
+ name = "Gutter - Gutter Docks"
/area/tether_away/guttersite/office
- name = "POI - Gutter Offices"
+ name = "Gutter - Gutter Offices"
/area/tether_away/guttersite/atmos
- name = "POI - Gutter Atmospherics"
+ name = "Gutter - Gutter Atmospherics"
/area/tether_away/guttersite/maint
- name = "POI - Gutter Maintenance"
+ name = "Gutter - Gutter Maintenance"
/area/tether_away/guttersite/vault
- name = "POI - Gutter Vault"
+ name = "Gutter - Gutter Vault"
/area/tether_away/guttersite/bridge
- name = "POI - Gutter Bridge"
+ name = "Gutter - Gutter Bridge"
/area/tether_away/guttersite/walkway
- name = "POI - Gutter Walkway"
+ name = "Gutter - Gutter Walkway"
/area/tether_away/guttersite/medbay
- name = "POI - Gutter Medbay"
+ name = "Gutter - Gutter Medbay"
/area/tether_away/guttersite/commons
- name = "POI - Gutter Commons"
+ name = "Gutter - Gutter Commons"
/area/tether_away/guttersite/storage
- name = "POI - Gutter Tool Storage"
+ name = "Gutter - Gutter Tool Storage"
/area/tether_away/guttersite/teleporter
- name = "POI - Gutter Teleporter"
+ name = "Gutter - Gutter Teleporter"
diff --git a/maps/expedition_vr/space/guttersite.dmm b/maps/submaps/admin_use_vr/guttersite.dmm
similarity index 100%
rename from maps/expedition_vr/space/guttersite.dmm
rename to maps/submaps/admin_use_vr/guttersite.dmm
diff --git a/maps/submaps/depreciated_vr/_depreciated.dm b/maps/submaps/depreciated_vr/_depreciated.dm
new file mode 100644
index 0000000000..facff5db09
--- /dev/null
+++ b/maps/submaps/depreciated_vr/_depreciated.dm
@@ -0,0 +1,9 @@
+/datum/map_template/admin_use/old_mercenary
+ name = "Special Area - Old Merc Base"
+ desc = "So much red!"
+ mappath = 'maps/submaps/admin_use_vr/mercbase.dmm'
+
+/datum/map_template/admin_use/ert
+ name = "Special Area - ERT"
+ desc = "ERT Base."
+ mappath = 'maps/submaps/admin_use_vr/ert_base.dmm'
diff --git a/maps/submaps/admin_use_vr/ert_base.dmm b/maps/submaps/depreciated_vr/ert_base.dmm
similarity index 100%
rename from maps/submaps/admin_use_vr/ert_base.dmm
rename to maps/submaps/depreciated_vr/ert_base.dmm
diff --git a/maps/submaps/admin_use_vr/mercbase.dmm b/maps/submaps/depreciated_vr/mercbase.dmm
similarity index 100%
rename from maps/submaps/admin_use_vr/mercbase.dmm
rename to maps/submaps/depreciated_vr/mercbase.dmm
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index 7da1c469d3..b60eb05e42 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -58,6 +58,7 @@
#include "../../submaps/admin_use_vr/ert.dm"
#include "../../submaps/admin_use_vr/mercship.dm"
+#include "../../submaps/admin_use_vr/guttersite.dm"
/datum/map_template/admin_use/ert
name = "Special Area - ERT"
@@ -79,11 +80,6 @@
desc = "Prepare tae be boarded, arr!"
mappath = 'maps/submaps/admin_use_vr/kk_mercship.dmm'
-/datum/map_template/admin_use/old_mercenary
- name = "Special Area - Old Merc Base"
- desc = "So much red!"
- mappath = 'maps/submaps/admin_use_vr/mercbase.dmm'
-
/datum/map_template/admin_use/skipjack
name = "Special Area - Skipjack Base"
desc = "Stinky!"
@@ -104,6 +100,11 @@
desc = "Sneaky"
mappath = 'maps/submaps/admin_use_vr/dojo.dmm'
+/datum/map_template/admin_use/guttersite
+ name = "Special Area - Guttersite"
+ desc = "A space for bad guys to hang out"
+ mappath = 'maps/submaps/admin_use_vr/guttersite.dmm'
+
//////////////////////////////////////////////////////////////////////////////
//Rogue Mines Stuff
@@ -131,30 +132,6 @@
flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
z = Z_LEVEL_ROGUEMINE_2
-/datum/map_template/tether_lateload/tether_roguemines3
- name = "Asteroid Belt 3"
- desc = "Mining, but rogue. Zone 3"
- mappath = 'maps/submaps/rogue_mines_vr/rogue_mine3.dmm'
-
- associated_map_datum = /datum/map_z_level/tether_lateload/roguemines3
-
-/datum/map_z_level/tether_lateload/roguemines3
- name = "Belt 3"
- flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
- z = Z_LEVEL_ROGUEMINE_3
-
-/datum/map_template/tether_lateload/tether_roguemines4
- name = "Asteroid Belt 4"
- desc = "Mining, but rogue. Zone 4"
- mappath = 'maps/submaps/rogue_mines_vr/rogue_mine4.dmm'
-
- associated_map_datum = /datum/map_z_level/tether_lateload/roguemines4
-
-/datum/map_z_level/tether_lateload/roguemines4
- name = "Belt 4"
- flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
- z = Z_LEVEL_ROGUEMINE_4
-
//////////////////////////////////////////////////////////////////////////////
/// Away Missions
#if AWAY_MISSION_TEST
@@ -165,7 +142,6 @@
#include "../../expedition_vr/aerostat/surface.dmm"
#include "../../expedition_vr/space/debrisfield.dmm"
#include "../../expedition_vr/space/fueldepot.dmm"
-#include "../../expedition_vr/space/guttersite.dmm"
#endif
#include "../../expedition_vr/beach/_beach.dm"
@@ -249,7 +225,6 @@
#include "../../expedition_vr/space/_fueldepot.dm"
#include "../../submaps/pois_vr/debris_field/_templates.dm"
#include "../../submaps/pois_vr/debris_field/debrisfield_things.dm"
-#include "../../expedition_vr/space/_guttersite.dm"
/datum/map_template/tether_lateload/away_debrisfield
name = "Debris Field - Z1 Space"
desc = "The Virgo 3 Debris Field away mission."
@@ -275,17 +250,6 @@
name = "Away Mission - Fuel Depot"
z = Z_LEVEL_FUELDEPOT
-/datum/map_template/tether_lateload/away_guttersite
- name = "Gutter Site - Z1 Space"
- desc = "The Virgo Erigone Space Away Site."
- mappath = 'maps/expedition_vr/space/guttersite.dmm'
- associated_map_datum = /datum/map_z_level/tether_lateload/away_guttersite
-
-/datum/map_z_level/tether_lateload/away_guttersite
- name = "Away Mission - Gutter Site"
- z = Z_LEVEL_GUTTERSITE
-
-
//////////////////////////////////////////////////////////////////////////////////////
// Gateway submaps go here
diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm
index 1ace7f3db7..0524f4097e 100644
--- a/maps/tether/submaps/tether_misc.dmm
+++ b/maps/tether/submaps/tether_misc.dmm
@@ -1,25120 +1,25392 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/machinery/vending/coffee,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"ab" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/flora/pottedplant{
- icon_state = "plant-10"
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"ac" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"ad" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"ae" = (
-/turf/unsimulated/mineral/virgo3b,
-/area/space)
-"ag" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 6
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"ah" = (
-/obj/machinery/door/window/holowindoor{
- dir = 1;
- name = "Jury Box"
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aj" = (
-/obj/structure/sign/warning{
- name = "\improper STAND AWAY FROM TRACK EDGE"
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"ak" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow{
- dir = 4
- },
-/obj/structure/window/reinforced/holowindow{
- dir = 1
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"al" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"am" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8;
- name = "Red Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_emptycourt)
-"an" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_picnicarea)
-"ao" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 9
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"ap" = (
-/turf/space,
-/area/space)
-"aq" = (
-/obj/effect/step_trigger/teleporter/random,
-/turf/space,
-/area/space)
-"ar" = (
-/turf/unsimulated/wall,
-/area/space)
-"as" = (
-/obj/structure/window/reinforced,
-/turf/unsimulated/wall,
-/area/space)
-"at" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"au" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet/corners{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"av" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aw" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow{
- dir = 4
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"ax" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 4
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"ay" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"az" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aA" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aB" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 8
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aC" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right"
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"aD" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Green Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_emptycourt)
-"aE" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aF" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aG" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"aH" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"aI" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/unsimulated/wall,
-/area/space)
-"aJ" = (
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_desert)
-"aK" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_desert)
-"aL" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/wall,
-/area/space)
-"aM" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aN" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aO" = (
-/obj/structure/table/rack/holorack,
-/obj/item/clothing/under/dress/dress_saloon,
-/obj/item/clothing/head/pin/flower,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_theatre)
-"aP" = (
-/obj/effect/landmark/costume,
-/obj/structure/table/rack/holorack,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_theatre)
-"aQ" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"aR" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8;
- name = "Red Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_basketball)
-"aS" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"aT" = (
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/source_wildlife)
-"aU" = (
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/source_plating)
-"aV" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_emptycourt)
-"aW" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"aX" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8;
- name = "Red Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_thunderdomecourt)
-"aY" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"aZ" = (
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"ba" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bb" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/wall,
-/area/space)
-"bc" = (
-/turf/simulated/shuttle/wall,
-/area/shuttle/supply)
-"bd" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_desert)
-"be" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bf" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bg" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_theatre)
-"bh" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Green Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_basketball)
-"bi" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bj" = (
-/obj/effect/landmark{
- name = "Holocarp Spawn"
- },
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/source_wildlife)
-"bk" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bl" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bm" = (
-/obj/effect/floor_decal/corner/red{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bn" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bo" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bp" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bq" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"br" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Green Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_thunderdomecourt)
-"bs" = (
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bt" = (
-/obj/structure/bed/chair/holochair,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bu" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 1
- },
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 8;
- layer = 3.4
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bv" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 1
- },
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bw" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 1
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bx" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 1
- },
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 4;
- layer = 3.4
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"by" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bz" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bA" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 8
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bB" = (
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_picnicarea)
-"bC" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 4
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bD" = (
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 8
- },
-/obj/structure/fitness/boxing_ropes_bottom,
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bE" = (
-/obj/structure/fitness/boxing_ropes_bottom,
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bF" = (
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 4
- },
-/obj/structure/fitness/boxing_ropes_bottom,
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bG" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_theatre)
-"bH" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"bI" = (
-/obj/structure/window/reinforced/holowindow,
-/obj/machinery/door/window/holowindoor{
- dir = 1;
- name = "Court Reporter's Box"
- },
-/obj/structure/bed/chair/holochair,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bJ" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow,
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bK" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bL" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow,
-/obj/structure/window/reinforced/holowindow{
- dir = 4
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bM" = (
-/obj/structure/window/reinforced/holowindow,
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Witness Box"
- },
-/obj/structure/bed/chair/holochair,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bN" = (
-/obj/effect/landmark/ai_multicam_room,
-/turf/unsimulated/ai_visible,
-/area/ai_multicam_room)
-"bO" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l"
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"bP" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"bQ" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "supply_shuttle_hatch";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"bR" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bS" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_picnicarea)
-"bT" = (
-/obj/structure/shuttle/engine/propulsion,
-/obj/effect/shuttle_landmark{
- base_area = /area/space;
- base_turf = /turf/space;
- landmark_tag = "supply_cc";
- name = "Centcom Supply Depot"
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"bU" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 4
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bV" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_theatre)
-"bW" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"bX" = (
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"bY" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"bZ" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"ca" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cb" = (
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cc" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cd" = (
-/turf/unsimulated/wall,
-/area/ai_multicam_room)
-"ce" = (
-/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
-/turf/space/transit/south,
-/area/space)
-"cf" = (
-/turf/space/transit/south,
-/area/space)
-"cg" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_leftnostop"
- },
-/turf/space/transit/south,
-/area/space)
-"ch" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/east;
- landmark_tag = "belter_transit";
- name = "Belter Transit"
- },
-/turf/space/transit/south,
-/area/space)
-"ci" = (
-/turf/unsimulated/ai_visible,
-/area/ai_multicam_room)
-"cj" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"ck" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r"
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"cl" = (
-/obj/effect/step_trigger/teleporter/random{
- affect_ghosts = 1;
- name = "escapeshuttle_leave";
- teleport_x = 25;
- teleport_x_offset = 245;
- teleport_y = 25;
- teleport_y_offset = 245;
- teleport_z = 4;
- teleport_z_offset = 4
- },
-/turf/space,
-/turf/space/transit/north,
-/area/space)
-"cm" = (
-/obj/item/toy/chess/pawn_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"cq" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"cs" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "supply_shuttle_hatch";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"ct" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"cu" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"cv" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"cw" = (
-/obj/structure/table/woodentable/holotable,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cx" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cy" = (
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cz" = (
-/obj/structure/table/woodentable/holotable,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cA" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"cB" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"cO" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- frequency = 1380;
- id_tag = "supply_shuttle";
- pixel_x = -25;
- req_one_access = list(13,31);
- tag_door = "supply_shuttle_hatch"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"cP" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"cQ" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"cS" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cT" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cU" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"da" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 1
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"dd" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"de" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"dg" = (
-/turf/unsimulated/wall{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"dh" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "supply_shuttle_hatch";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"di" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"dj" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"dk" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"dl" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"dm" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"dq" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-06"
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_theatre)
-"dr" = (
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"ds" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"dt" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"du" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"dv" = (
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"dw" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"dx" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"dA" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/wall,
-/area/space)
-"dB" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/unsimulated/wall,
-/area/space)
-"dD" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_station";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"dE" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/airless,
-/area/shuttle/supply)
-"dF" = (
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/source_space)
-"dG" = (
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"dH" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_meetinghall)
-"dI" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-06"
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_meetinghall)
-"dJ" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_basketball)
-"dK" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dM" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dN" = (
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dO" = (
-/obj/structure/holohoop,
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dP" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dQ" = (
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"dR" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_thunderdomecourt)
-"dS" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"dU" = (
-/obj/structure/table/holotable,
-/obj/machinery/readybutton,
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"dV" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/clothing/suit/armor/tdome/red,
-/obj/item/clothing/under/color/red,
-/obj/item/weapon/holo/esword/red,
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"dW" = (
-/obj/structure/table/holotable,
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"dX" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_boxingcourt)
-"dY" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_boxingcourt)
-"dZ" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"ec" = (
-/obj/effect/landmark{
- name = "Holocarp Spawn Random"
- },
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/source_space)
-"ed" = (
-/obj/structure/flora/grass/both,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"ee" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"ef" = (
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eg" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eh" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ei" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ej" = (
-/obj/effect/floor_decal/corner/red{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ek" = (
-/obj/effect/overlay/palmtree_r,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"el" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"em" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"en" = (
-/obj/effect/floor_decal/corner/red{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"eo" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_boxingcourt)
-"ep" = (
-/obj/structure/flora/tree/pine,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"eq" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_meetinghall)
-"es" = (
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"et" = (
-/obj/effect/overlay/palmtree_l,
-/obj/effect/overlay/coconut,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"eD" = (
-/obj/effect/floor_decal/sign/small_4,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"eJ" = (
-/obj/structure/flora/tree/dead,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"eK" = (
-/turf/simulated/floor/holofloor/lino,
-/area/holodeck/source_meetinghall)
-"eL" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_meetinghall)
-"eM" = (
-/obj/item/weapon/beach_ball,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"eS" = (
-/obj/effect/floor_decal/industrial/danger,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"eT" = (
-/obj/structure/flora/grass/green,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"eU" = (
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eV" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eW" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eX" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eY" = (
-/obj/effect/floor_decal/corner/red/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"eZ" = (
-/obj/effect/floor_decal/corner/red{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fa" = (
-/obj/item/weapon/beach_ball/holoball,
-/obj/effect/floor_decal/corner/red{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fb" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fc" = (
-/obj/item/weapon/inflatable_duck,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"fd" = (
-/obj/structure/window/reinforced/holowindow/disappearing,
-/obj/effect/floor_decal/corner/red/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fe" = (
-/obj/structure/window/reinforced/holowindow/disappearing,
-/obj/effect/floor_decal/corner/red{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"ff" = (
-/obj/structure/window/reinforced/holowindow/disappearing,
-/obj/effect/floor_decal/corner/red/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fn" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fo" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fp" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fq" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fr" = (
-/obj/effect/floor_decal/corner/green{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fs" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ft" = (
-/obj/structure/window/reinforced/holowindow/disappearing{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fu" = (
-/obj/structure/window/reinforced/holowindow/disappearing{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fv" = (
-/obj/structure/window/reinforced/holowindow/disappearing{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fz" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fA" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fB" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fC" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fG" = (
-/obj/structure/flora/grass/brown,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"fH" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet{
- dir = 8
- },
-/area/holodeck/source_meetinghall)
-"fJ" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fK" = (
-/turf/unsimulated/beach/sand{
- icon_state = "beach"
- },
-/area/holodeck/source_beach)
-"fO" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fP" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fQ" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fR" = (
-/turf/simulated/floor/holofloor/beach/water,
-/area/holodeck/source_beach)
-"fS" = (
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fT" = (
-/obj/structure/holohoop{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fU" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fV" = (
-/obj/structure/table/holotable,
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fW" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/clothing/suit/armor/tdome/green,
-/obj/item/clothing/under/color/green,
-/obj/item/weapon/holo/esword/green,
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fX" = (
-/obj/structure/table/holotable,
-/obj/machinery/readybutton,
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fY" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove{
- icon_state = "boxinggreen";
- item_state = "boxinggreen"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_boxingcourt)
-"fZ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/wall,
-/area/space)
-"ga" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gb" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gc" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gd" = (
-/obj/structure/bed/chair/holochair{
- dir = 8
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"ge" = (
-/obj/effect/overlay/palmtree_r,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gf" = (
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gg" = (
-/obj/effect/overlay/coconut,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gh" = (
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gi" = (
-/obj/effect/overlay/palmtree_l,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gj" = (
-/obj/structure/flora/grass/brown,
-/obj/structure/flora/tree/dead,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gk" = (
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gl" = (
-/turf/unsimulated/beach/sand{
- icon_state = "beach"
- },
-/area/holodeck/holodorm/source_beach)
-"gm" = (
-/obj/effect/landmark{
- name = "Wolfgirl Spawn"
- },
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gn" = (
-/obj/structure/flora/grass/brown,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"go" = (
-/obj/structure/flora/grass/green,
-/obj/structure/flora/tree/pine,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gq" = (
-/obj/structure/bed/holobed,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gr" = (
-/turf/simulated/floor/holofloor/beach/water,
-/area/holodeck/holodorm/source_beach)
-"gs" = (
-/obj/structure/flora/grass/green,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gt" = (
-/obj/structure/flora/grass/both,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gE" = (
-/obj/structure/closet/hydrant{
- pixel_y = 32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"gN" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/holodorm/source_desert)
-"gO" = (
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/holodorm/source_desert)
-"gP" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/holodorm/source_desert)
-"gQ" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/holodorm/source_garden)
-"gR" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/holodorm/source_garden)
-"gS" = (
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/holodorm/source_off)
-"gU" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/industrial/danger,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"hg" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/landmark{
- name = "Catgirl Spawn"
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/holodorm/source_garden)
-"hx" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_seating)
-"hy" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hz" = (
-/obj/structure/bed/chair/holochair,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hA" = (
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hB" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hC" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hD" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hE" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hF" = (
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/holodorm/source_space)
-"hJ" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hK" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hL" = (
-/obj/structure/bed/chair/holochair{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hO" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hP" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hQ" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hR" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove{
- icon_state = "boxinggreen";
- item_state = "boxinggreen"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"ig" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/obj/effect/transit/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"ih" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ii" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"in" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"ix" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"iO" = (
-/obj/effect/step_trigger/teleporter/random{
- affect_ghosts = 1;
- name = "escapeshuttle_leave";
- teleport_x = 25;
- teleport_x_offset = 245;
- teleport_y = 25;
- teleport_y_offset = 245;
- teleport_z = 4;
- teleport_z_offset = 4
- },
-/turf/space/transit/west,
-/area/space)
-"iU" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"jf" = (
-/turf/space/transit/north,
-/area/space)
-"jr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"jL" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"jQ" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/east;
- landmark_tag = "specops_transit";
- name = "Specops Transit"
- },
-/turf/space/transit/west,
-/area/space)
-"kh" = (
-/obj/machinery/telecomms/relay/preset/centcom/tether,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"kn" = (
-/obj/structure/fake_stairs/north/bottom{
- _stair_tag = "stairtest"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"kr" = (
-/obj/machinery/telecomms/server/presets/centcomm,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"kw" = (
-/obj/effect/floor_decal/sign/small_5,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"lf" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"li" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"lE" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"mb" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"mF" = (
-/obj/effect/shuttle_landmark{
- base_area = null;
- base_turf = null;
- docking_controller = null;
- landmark_tag = "escape_transit";
- name = "Escape Transit"
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"nj" = (
-/obj/item/toy/chess/rook_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"nn" = (
-/obj/machinery/telecomms/allinone/antag{
- intercept = 1
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"nB" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"nC" = (
-/obj/structure/table/standard,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = 32
- },
-/obj/item/toy/nanotrasenballoon,
-/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"nV" = (
-/obj/item/toy/chess/rook_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"nW" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"oI" = (
-/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
-/turf/space/transit/east,
-/area/space)
-"oT" = (
-/obj/item/toy/chess/pawn_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"pb" = (
-/obj/machinery/telecomms/processor/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"pf" = (
-/obj/effect/floor_decal/sign/small_8,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"pk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"pv" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_offsite";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"pF" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/east;
- landmark_tag = "escapepod1_transit";
- name = "Escapepod 1 Transit"
- },
-/turf/space/transit/east,
-/area/space)
-"pT" = (
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"pX" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"qc" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"qn" = (
-/turf/space/transit/east,
-/area/space)
-"qv" = (
-/obj/effect/floor_decal/sign/small_h,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"qz" = (
-/turf/space,
-/turf/space/internal_edge/bottomright,
-/area/space)
-"qV" = (
-/obj/effect/floor_decal/sign/small_6,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"qY" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"rh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ru" = (
-/obj/item/toy/chess/pawn_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"rE" = (
-/obj/machinery/telecomms/bus/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"sb" = (
-/obj/item/toy/chess/knight_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"sl" = (
-/turf/space/internal_edge/top,
-/area/space)
-"sp" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"sx" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"sF" = (
-/obj/effect/overmap/bluespace_rift,
-/turf/unsimulated/map,
-/area/overmap)
-"sN" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/obj/effect/transit/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"sT" = (
-/obj/structure/closet/hydrant{
- pixel_y = -32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ti" = (
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"tp" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"tu" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"tC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"tD" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- stopper = 0;
- tiles = 0
- },
-/turf/space/transit/east,
-/area/space)
-"tH" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/obj/effect/transit/light{
- dir = 8
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"tS" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"uc" = (
-/turf/unsimulated/wall,
-/area/centcom/suppy)
-"ud" = (
-/obj/machinery/status_display/supply_display,
-/turf/unsimulated/wall,
-/area/centcom/suppy)
-"ue" = (
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/suppy)
-"uf" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/suppy)
-"ug" = (
-/obj/item/weapon/paper{
- info = "You're not supposed to be here.";
- name = "unnerving letter"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/suppy)
-"uG" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"uM" = (
-/obj/item/toy/chess/knight_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"vu" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"vz" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"vW" = (
-/obj/effect/floor_decal/sign/small_a,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"wa" = (
-/obj/effect/floor_decal/sign/small_3,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"wd" = (
-/obj/structure/sign/warning/nosmoking_2,
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"wh" = (
-/obj/item/toy/chess/knight_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"wj" = (
-/turf/space/internal_edge/left,
-/area/space)
-"wl" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/evac)
-"wn" = (
-/obj/structure/fake_stairs/south/top{
- _stair_tag = "stairtest"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"wy" = (
-/turf/unsimulated/wall,
-/area/centcom/control)
-"wZ" = (
-/turf/unsimulated/floor{
- icon_state = "sandwater"
- },
-/area/beach)
-"xe" = (
-/obj/machinery/account_database{
- dir = 1;
- name = "CentComm Accounts database"
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"xi" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"xl" = (
-/obj/structure/table/standard,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"xM" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"ya" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 4;
- name = "thrower_escapeshuttletop(right)";
- tiles = 0
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"ym" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"yA" = (
-/obj/machinery/telecomms/receiver/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"yK" = (
-/obj/machinery/door/airlock/multi_tile/metal,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"yU" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"zb" = (
-/obj/effect/step_trigger/thrower{
- direction = 1;
- name = "thrower_throwup";
- tiles = 0
- },
-/turf/space/transit/east,
-/area/space)
-"zv" = (
-/obj/effect/transit/light{
- dir = 8
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"zw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_offsite";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"zH" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"zK" = (
-/obj/machinery/door/blast/regular{
- dir = 4
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"Al" = (
-/obj/structure/bed/chair/shuttle,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Av" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"Ax" = (
-/turf/unsimulated/beach/coastline{
- density = 1;
- opacity = 1
- },
-/area/beach)
-"Az" = (
-/turf/unsimulated/beach/coastline,
-/area/beach)
-"AD" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Bm" = (
-/obj/item/toy/chess/bishop_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Bs" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_station";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Bw" = (
-/turf/unsimulated/beach/water,
-/area/beach)
-"BD" = (
-/obj/effect/overlay/palmtree_r,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"BG" = (
-/obj/item/toy/chess/king_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"BK" = (
-/turf/space,
-/turf/space/internal_edge/bottomleft,
-/area/space)
-"Cd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Cn" = (
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Cp" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/shuttle_landmark{
- base_area = /area/centcom/simulated/terminal;
- base_turf = /turf/simulated/floor/tiled/techfloor/grid;
- docking_controller = null;
- landmark_tag = "escape_cc";
- name = "Escape Centcom"
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"Ct" = (
-/obj/machinery/ntnet_relay,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"Cw" = (
-/obj/machinery/r_n_d/server/centcom,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"Cy" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"CG" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"CJ" = (
-/obj/item/toy/chess/pawn_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"CK" = (
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Di" = (
-/obj/effect/floor_decal/sign/small_2,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Dk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"Dm" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Dn" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Dw" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/food/snacks/chips,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"DF" = (
-/turf/space,
-/turf/space/internal_edge/topright,
-/area/space)
-"DI" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"DL" = (
-/obj/effect/floor_decal/sign/small_b,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"El" = (
-/turf/space/transit/west,
-/area/space)
-"Eo" = (
-/obj/effect/floor_decal/sign/small_g,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Et" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ET" = (
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"EX" = (
-/obj/item/toy/chess/bishop_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Fa" = (
-/obj/structure/table/standard,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"Fe" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"Fp" = (
-/turf/simulated/floor/maglev,
-/area/centcom/simulated/terminal)
-"Ft" = (
-/obj/effect/transit/light{
- dir = 4
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"FH" = (
-/obj/structure/bed/chair,
-/obj/effect/landmark{
- name = "endgame_exit"
- },
-/obj/item/toy/plushie/mouse{
- desc = "A plushie of a small fuzzy rodent.";
- name = "Woodrat"
- },
-/turf/unsimulated/beach/sand,
-/area/beach)
-"FJ" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"FT" = (
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"FX" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/obj/effect/transit/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"FY" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Ga" = (
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"Gq" = (
-/turf/unsimulated/wall,
-/area/beach)
-"Gs" = (
-/turf/space,
-/turf/space/transit/north,
-/area/space)
-"Gw" = (
-/obj/effect/overlay/palmtree_l,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"GW" = (
-/obj/item/toy/chess/king_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Hf" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/north;
- landmark_tag = "ninja_transit";
- name = "Ninja Transit"
- },
-/turf/space/transit/north,
-/area/space)
-"Hk" = (
-/obj/effect/floor_decal/sign/small_7,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Hr" = (
-/obj/item/toy/chess/rook_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Hy" = (
-/turf/unsimulated/mineral{
- icon = 'icons/turf/transit_vr.dmi';
- icon_state = "rock"
- },
-/area/space)
-"HL" = (
-/obj/effect/floor_decal/sign/small_1,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"HQ" = (
-/obj/machinery/telecomms/broadcaster/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"HW" = (
-/obj/machinery/status_display{
- pixel_y = -30
- },
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"HX" = (
-/obj/structure/table/standard,
-/obj/structure/closet/walllocker/medical/west,
-/obj/item/weapon/storage/firstaid,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Ic" = (
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Ik" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"In" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/north;
- landmark_tag = "skipjack_transit";
- name = "Skipjack Transit"
- },
-/turf/space/transit/north,
-/area/space)
-"Iq" = (
-/obj/machinery/telecomms/hub/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"IN" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"IR" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Jc" = (
-/obj/item/toy/chess/bishop_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Jq" = (
-/obj/structure/sign/warning/docking_area,
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"Jw" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Jx" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/corner_steel_grid/diagonal{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Jz" = (
-/obj/effect/step_trigger/teleporter/random{
- affect_ghosts = 1;
- name = "escapeshuttle_leave";
- teleport_x = 25;
- teleport_x_offset = 245;
- teleport_y = 25;
- teleport_y_offset = 245;
- teleport_z = 4;
- teleport_z_offset = 4
- },
-/turf/space/transit/north,
-/area/space)
-"JI" = (
-/obj/item/toy/chess/rook_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"JL" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/space/transit/north,
-/area/space)
-"JR" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "TelelockdownC";
- name = "Security Doors";
- opacity = 0
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"JW" = (
-/turf/unsimulated/beach/water{
- density = 1;
- opacity = 1
- },
-/area/beach)
-"JZ" = (
-/turf/space/internal_edge/right,
-/area/space)
-"Kj" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/simulated/sky/virgo3b/south;
- landmark_tag = "tether_backup_transit";
- name = "Tether Backup Transit"
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Kn" = (
-/obj/effect/floor_decal/sign/small_d,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"KQ" = (
-/obj/effect/floor_decal/sign/small_f,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Lg" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"Lz" = (
-/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"LD" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Mb" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Mf" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Mi" = (
-/obj/item/toy/chess/bishop_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Mq" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ME" = (
-/obj/machinery/computer/rdservercontrol{
- badmin = 1;
- dir = 1;
- name = "Master R&D Server Controller"
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"MK" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"ML" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_leftnostop"
- },
-/turf/space/transit/east,
-/area/space)
-"Nj" = (
-/obj/item/clothing/head/collectable/paper,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"No" = (
-/obj/item/weapon/beach_ball,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"Nq" = (
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Nr" = (
-/obj/machinery/cryopod/robot/door/gateway,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Nt" = (
-/turf/unsimulated/beach/sand{
- density = 1;
- opacity = 1
- },
-/area/beach)
-"NA" = (
-/obj/structure/closet/hydrant{
- pixel_y = -32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"NW" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/structure/closet/walllocker/medical/east,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Oj" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 8;
- name = "thrower_escapeshuttletop(left)";
- tiles = 0
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Or" = (
-/obj/item/toy/chess/knight_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"OY" = (
-/turf/unsimulated/map,
-/area/overmap)
-"Pe" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"Pf" = (
-/obj/structure/table/woodentable{
- dir = 5
- },
-/obj/structure/flora/pottedplant{
- pixel_y = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Pg" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Pi" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/space/transit/west,
-/area/space)
-"Pq" = (
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"Py" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"PU" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Qa" = (
-/obj/structure/table/standard,
-/obj/random/soap,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Qs" = (
-/obj/item/toy/chess/queen_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"QY" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-21"
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Rc" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"Rd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Re" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rg" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Ri" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rk" = (
-/obj/structure/bed/chair/shuttle,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rm" = (
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Ro" = (
-/obj/structure/closet/hydrant{
- pixel_y = 32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rq" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "TelelockdownC";
- name = "Security Doors";
- opacity = 0
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Rr" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-22"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Rs" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Ru" = (
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Rv" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "TelelockdownC";
- name = "Security Doors";
- opacity = 0
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Rz" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"RA" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"RD" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RE" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"RF" = (
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RG" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RV" = (
-/obj/effect/step_trigger/teleporter/random{
- affect_ghosts = 1;
- name = "escapeshuttle_leave";
- teleport_x = 25;
- teleport_x_offset = 245;
- teleport_y = 25;
- teleport_y_offset = 245;
- teleport_z = 6;
- teleport_z_offset = 6
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"RY" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Sh" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Sl" = (
-/obj/structure/sign/nanotrasen,
-/turf/simulated/wall/thull,
-/area/shuttle/escape)
-"Sm" = (
-/turf/simulated/shuttle/wall/alien/blue/hard_corner,
-/area/unknown/dorm4)
-"Sn" = (
-/turf/simulated/shuttle/wall/alien/blue,
-/area/unknown/dorm4)
-"So" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Sp" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Sq" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Sr" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Ss" = (
-/obj/machinery/door/airlock/alien/blue/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Su" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"Sw" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"Sx" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"Sy" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Sz" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SA" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SB" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SC" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unkfour"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"SD" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/hopdouble,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SE" = (
-/obj/structure/prop/alien/computer/hybrid{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SF" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SG" = (
-/obj/structure/table/standard,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
- },
-/obj/item/clothing/head/beret/nanotrasen,
-/obj/item/clothing/head/soft/nanotrasen,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"SH" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"SK" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SN" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SO" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SP" = (
-/obj/structure/table/alien/blue,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SQ" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm4)
-"SR" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"SS" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"ST" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"SV" = (
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"SW" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Transfer";
- tele_network = "centcom"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"SX" = (
-/turf/simulated/shuttle/wall/alien/blue/hard_corner,
-/area/unknown/dorm3)
-"SY" = (
-/turf/simulated/shuttle/wall/alien/blue,
-/area/unknown/dorm3)
-"SZ" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Ta" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Tb" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Tc" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Td" = (
-/obj/machinery/door/airlock/alien/blue/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Tf" = (
-/obj/machinery/cryopod/robot/door/gateway,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Th" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Ti" = (
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Tj" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Tk" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tl" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tm" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tn" = (
-/obj/structure/table/standard,
-/obj/item/clothing/under/color/rainbow,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/clothing/head/collectable/petehat{
- pixel_y = 5
- },
-/turf/unsimulated/beach/sand,
-/area/beach)
-"To" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tp" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tq" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tr" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unkthree"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Ts" = (
-/obj/effect/overlay/coconut,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"Tt" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/hopdouble,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tu" = (
-/obj/structure/prop/alien/computer/hybrid{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tv" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Tx" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Ty" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tz" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"TA" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"TB" = (
-/obj/structure/table/alien/blue,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"TC" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm3)
-"TD" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"TE" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"TF" = (
-/obj/structure/bed/chair,
-/obj/effect/landmark{
- name = "endgame_exit"
- },
-/turf/unsimulated/beach/sand,
-/area/beach)
-"TG" = (
-/obj/effect/landmark{
- name = "endgame_exit"
- },
-/turf/unsimulated/beach/sand,
-/area/beach)
-"TH" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"TI" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/terminal)
-"TJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"TK" = (
-/turf/simulated/shuttle/wall/alien/hard_corner,
-/area/unknown/dorm2)
-"TM" = (
-/turf/simulated/shuttle/wall/alien,
-/area/unknown/dorm2)
-"TN" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TP" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TQ" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TR" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TS" = (
-/obj/machinery/door/airlock/alien/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TT" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TU" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TV" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TW" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TX" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TY" = (
-/obj/machinery/door/firedoor,
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/terminal)
-"TZ" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Ua" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ub" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unktwo"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Uc" = (
-/obj/item/weapon/bedsheet/rddouble,
-/obj/structure/bed/double/padded,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ud" = (
-/obj/structure/prop/alien/computer{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uf" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ug" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uh" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ui" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uj" = (
-/obj/structure/table/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uk" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm2)
-"Ul" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Um" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Uo" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Up" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Ur" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Us" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Ut" = (
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Uu" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Uv" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/bed/chair,
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/main_hall)
-"Uw" = (
-/turf/simulated/shuttle/wall/alien/hard_corner,
-/area/unknown/dorm1)
-"Ux" = (
-/turf/simulated/shuttle/wall/alien,
-/area/unknown/dorm1)
-"Uz" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UA" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UC" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UD" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UE" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/bed/chair,
-/obj/machinery/status_display{
- pixel_y = 29
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/main_hall)
-"UF" = (
-/obj/machinery/door/airlock/alien/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UG" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UH" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UI" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UJ" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UK" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UM" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UN" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unkone"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UP" = (
-/obj/item/weapon/bedsheet/rddouble,
-/obj/structure/bed/double/padded,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UQ" = (
-/obj/structure/prop/alien/computer{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UR" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"US" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UT" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UU" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UV" = (
-/obj/structure/table/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UW" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm1)
-"UX" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UY" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UZ" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"Va" = (
-/obj/effect/floor_decal/rust/steel_decals_rusted2,
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vb" = (
-/obj/machinery/recharge_station,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vc" = (
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vd" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"Ve" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/obj/structure/sign/department/medbay,
-/turf/unsimulated/floor{
- icon_state = "plating";
- name = "plating"
- },
-/area/centcom/simulated/medical)
-"Vf" = (
-/obj/machinery/door/airlock{
- name = "Unit 4"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vg" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/living)
-"Vh" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/corner_steel_grid/diagonal{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Vi" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vj" = (
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/large_escape_pod2/centcom{
- base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
- })
-"Vk" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/bathroom)
-"Vl" = (
-/obj/structure/sign/warning{
- name = "\improper STAND AWAY FROM TRACK EDGE"
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/living)
-"Vm" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/large_escape_pod2/centcom{
- base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
- })
-"Vn" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vo" = (
-/obj/machinery/door/blast/regular,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vp" = (
-/obj/effect/floor_decal/rust/part_rusted3,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vq" = (
-/obj/effect/floor_decal/rust/part_rusted3,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vr" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vs" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vt" = (
-/obj/effect/floor_decal/rust/mono_rusted3,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vu" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/main_hall)
-"Vv" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/terminal)
-"Vw" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Vy" = (
-/obj/machinery/door/airlock{
- name = "Unit 3"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vz" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"VB" = (
-/obj/effect/floor_decal/sign/dock/one,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VC" = (
-/turf/unsimulated/beach/sand,
-/area/beach)
-"VD" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VE" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/centcom/simulated/evac;
- base_turf = /turf/unsimulated/floor/steel;
- docking_controller = null;
- landmark_tag = "escapepod1_cc";
- name = "Centcom Recovery Area"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VF" = (
-/obj/effect/floor_decal/sign/dock/two,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VI" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"VJ" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/restaurant)
-"VL" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/restaurant)
-"VM" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/restaurant)
-"VN" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/large_escape_pod2/centcom{
- base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
- })
-"VO" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VP" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VQ" = (
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"VR" = (
-/obj/structure/bed/chair/wood/wings,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"VS" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VU" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VV" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VW" = (
-/turf/space,
-/turf/space/internal_edge/topleft,
-/area/space)
-"VX" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VY" = (
-/obj/structure/closet/crate/bin,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"VZ" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wb" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/pastatomato,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wc" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wd" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"We" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/fries,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wf" = (
-/obj/item/toy/chess/queen_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Wh" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Wi" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Wj" = (
-/obj/effect/blocker,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/living)
-"Wk" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/food/snacks/cheeseburger,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wl" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wm" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/lasagna,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wo" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/hotdog,
-/obj/item/weapon/reagent_containers/food/snacks/hotdog{
- pixel_x = -5;
- pixel_y = -3
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wp" = (
-/obj/machinery/cryopod/robot/door/dorms,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Wq" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/computer/cryopod/dorms{
- name = "Company Property Retention System";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Ws" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Wt" = (
-/obj/machinery/porta_turret/crescent{
- density = 1
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Wu" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wv" = (
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Wz" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WA" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WB" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/restaurant)
-"WC" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/medical)
-"WD" = (
-/obj/effect/overlay/palmtree_r,
-/obj/effect/overlay/coconut,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"WE" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "FrontlockC2";
- name = "Security Door";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"WF" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/meatballsoup,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WH" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WI" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/roastbeef,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/northleft{
- req_access = list(63);
- req_one_access = list(1)
- },
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "FrontlockC2";
- name = "Security Door";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"WK" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/brigdoor/northright{
- req_access = list(63);
- req_one_access = list(1)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "FrontlockC2";
- name = "Security Door";
- opacity = 0
- },
-/obj/machinery/computer/skills,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"WL" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/meatsteak,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WN" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WO" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WP" = (
-/obj/structure/table/woodentable,
-/obj/machinery/cash_register/civilian,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WQ" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WR" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{
- pixel_y = 10
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WS" = (
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"WT" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"WU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner";
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"WV" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WW" = (
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WZ" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xa" = (
-/obj/machinery/vending/sovietsoda,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xb" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xc" = (
-/obj/machinery/vending/cola,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xd" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xe" = (
-/obj/machinery/smartfridge/drinks,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xf" = (
-/obj/machinery/vending/boozeomat,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xg" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/bar_alc/full,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xi" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/bar)
-"Xj" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Xk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass,
-/turf/unsimulated/floor/steel{
- icon_state = "white"
- },
-/area/centcom/simulated/medical)
-"Xl" = (
-/turf/unsimulated/map/edge,
-/area/overmap)
-"Xm" = (
-/obj/machinery/door/firedoor,
-/turf/unsimulated/floor/steel{
- icon_state = "white"
- },
-/area/centcom/simulated/medical)
-"Xn" = (
-/obj/structure/sign/greencross,
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"Xp" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Xr" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Xs" = (
-/obj/machinery/computer/card{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- frequency = 1475;
- name = "Station Intercom (Security)";
- pixel_y = 27
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xv" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xw" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xx" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/machinery/camera/network/crescent,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xy" = (
-/obj/structure/table/standard,
-/obj/item/stack/nanopaste,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Xz" = (
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XA" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XB" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/sink{
- dir = 4;
- pixel_x = 12;
- pixel_y = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XC" = (
-/obj/machinery/computer/secure_data{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"XD" = (
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"XE" = (
-/turf/simulated/wall/thull,
-/area/shuttle/escape)
-"XH" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"XJ" = (
-/obj/structure/table/glass,
-/obj/item/device/healthanalyzer/improved,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XK" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data{
- icon_keyboard = "laptop_key";
- icon_screen = "medlaptop";
- icon_state = "laptop";
- light_color = "#00b000"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XM" = (
-/obj/structure/table/glass{
- desc = "It's a table, it has some scracthes..they say 'Mlem'."
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XN" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XO" = (
-/obj/structure/signpost,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"XP" = (
-/obj/machinery/oxygen_pump/anesthetic,
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"XQ" = (
-/obj/machinery/optable,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XR" = (
-/obj/machinery/computer/operating{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XS" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XU" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"XV" = (
-/obj/machinery/turretid/stun{
- check_access = 0;
- check_anomalies = 0;
- check_records = 0;
- control_area = "\improper CentCom Security Arrivals";
- pixel_x = 32;
- req_access = list(101);
- req_one_access = list(101)
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"XW" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"XX" = (
-/obj/machinery/computer/crew{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XY" = (
-/obj/structure/closet,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"XZ" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Ya" = (
-/obj/machinery/camera/network/crescent,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yb" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 3
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yc" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yg" = (
-/obj/structure/sign/department/operational,
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"Yh" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yj" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yk" = (
-/obj/structure/medical_stand,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yl" = (
-/obj/machinery/door/airlock/security{
- name = "Security"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Ym" = (
-/obj/machinery/vending/medical,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yo" = (
-/obj/structure/closet/secure_closet/medical2,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Ys" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Yt" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Yu" = (
-/obj/machinery/camera/network/crescent,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Yv" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- req_access = list(5)
- },
-/obj/machinery/door/firedoor/multi_tile,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yw" = (
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access = list(45)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yx" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Yy" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"YB" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 7;
- pixel_y = 1
- },
-/obj/item/weapon/tool/wrench,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YC" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YD" = (
-/obj/machinery/atmospherics/unary/freezer,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YE" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"YF" = (
-/obj/structure/table/glass,
-/obj/item/device/defib_kit/loaded,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YG" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"YH" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/pill_bottle/spaceacillin,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YI" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/gun/energy/taser,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"YJ" = (
-/obj/structure/closet/secure_closet/nanotrasen_security,
-/obj/item/weapon/storage/box/handcuffs,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/shield/riot,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"YK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YL" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YO" = (
-/obj/machinery/computer/transhuman/designer{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YP" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YQ" = (
-/obj/structure/table/glass,
-/obj/machinery/chemical_dispenser/full,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YR" = (
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/main_hall)
-"YT" = (
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YU" = (
-/obj/structure/table/glass,
-/obj/machinery/chemical_dispenser/ert,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YV" = (
-/obj/machinery/transhuman/synthprinter,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YX" = (
-/obj/effect/floor_decal/sign/small_e,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"YY" = (
-/obj/machinery/bodyscanner{
- dir = 8
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YZ" = (
-/obj/machinery/body_scanconsole,
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zb" = (
-/obj/machinery/sleep_console{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zc" = (
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zd" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Ze" = (
-/obj/machinery/transhuman/resleever,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zf" = (
-/obj/structure/filingcabinet/chestdrawer{
- name = "Medical Forms"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zg" = (
-/obj/machinery/clonepod/transhuman/full,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zh" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
-/obj/item/weapon/reagent_containers/glass/rag,
-/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Zi" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Zj" = (
-/obj/structure/table/standard,
-/obj/item/device/healthanalyzer,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zk" = (
-/obj/structure/table/reinforced,
-/obj/item/device/camera,
-/obj/item/weapon/storage/box/ids,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zl" = (
-/obj/structure/table/glass,
-/obj/item/weapon/backup_implanter{
- pixel_y = -8
- },
-/obj/item/weapon/backup_implanter{
- pixel_y = 8
- },
-/obj/item/weapon/backup_implanter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zn" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zp" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zq" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zr" = (
-/obj/structure/table/standard,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zs" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zt" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/corner_steel_grid/diagonal{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Zw" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/donkpockets,
-/obj/item/weapon/storage/box/donkpockets,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zx" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zy" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zz" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = 3;
- pixel_y = 5
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"ZC" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"ZD" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"ZE" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"ZQ" = (
-/obj/effect/floor_decal/sign/small_c,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-
-(1,1,1) = {"
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-"}
-(2,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(3,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-Gq
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Ax
-JW
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(4,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-Gq
-Nt
-VC
-Gw
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(5,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(6,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XO
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-Ts
-BD
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(7,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-Ts
-VC
-Nj
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Uw
-Ux
-Uw
-Ux
-Ux
-Ux
-Ux
-Ux
-Ux
-Uw
-Ux
-Ux
-Uw
-ae
-ae
-ae
-ae
-ae
-SX
-SY
-SX
-SY
-SY
-SY
-SY
-SY
-SY
-SX
-SY
-SY
-SX
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(8,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-BD
-VC
-TG
-TG
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-Uz
-Uw
-UK
-UM
-UG
-UQ
-US
-US
-Uw
-UH
-UW
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-SZ
-SX
-Tp
-Tq
-Tk
-Tu
-Ty
-Ty
-SX
-Tl
-TC
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-sF
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(9,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-Ts
-TG
-Fa
-Dw
-TG
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-UA
-UF
-UH
-UA
-UN
-UA
-UA
-UH
-UF
-UH
-UX
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-Ta
-Td
-Tl
-Ta
-Tr
-Ta
-Ta
-Tl
-Td
-Tl
-TD
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(10,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-TG
-Tn
-Ik
-TG
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-UC
-Uw
-UI
-UA
-UA
-UA
-UA
-UU
-Uw
-UH
-UY
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-Tb
-SX
-Tm
-Ta
-Ta
-Ta
-Ta
-TA
-SX
-Tl
-TE
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(11,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-TG
-TG
-VC
-VC
-VC
-FH
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-UD
-Ux
-UJ
-UH
-UP
-UR
-UT
-UV
-Ux
-UH
-UZ
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-Tc
-SY
-To
-Tl
-Tt
-Tx
-Tz
-TB
-SY
-Tl
-TH
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(12,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Oj
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Uw
-Ux
-Uw
-Ux
-Ux
-Ux
-Ux
-Ux
-Ux
-Uw
-Ux
-Ux
-Uw
-ae
-ae
-ae
-ae
-ae
-SX
-SY
-SX
-SY
-SY
-SY
-SY
-SY
-SY
-SX
-SY
-SY
-SX
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(13,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Oj
-Cn
-Cn
-Cn
-Kj
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-TF
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(14,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Oj
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-BD
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(15,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-ya
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-TF
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(16,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-ya
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-VC
-No
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(17,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-Ts
-Gw
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-aa
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(18,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(19,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TK
-TM
-TK
-TM
-TM
-TM
-TM
-TM
-TM
-TK
-TM
-TM
-TK
-ae
-ae
-ae
-ae
-ae
-Sm
-Sn
-Sm
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sm
-Sn
-Sn
-Sm
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(20,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-Gw
-Ts
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TN
-TK
-TX
-Ua
-TT
-Ud
-Ug
-Ug
-TK
-TU
-Uk
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-So
-Sm
-SA
-SB
-Su
-SE
-SK
-SK
-Sm
-Sw
-SQ
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(21,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TP
-TS
-TU
-TP
-Ub
-TP
-TP
-TU
-TS
-TU
-Ul
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-Sp
-Ss
-Sw
-Sp
-SC
-Sp
-Sp
-Sw
-Ss
-Sw
-SR
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-sF
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(22,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-WD
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TQ
-TK
-TV
-TP
-TP
-TP
-TP
-Ui
-TK
-TU
-Um
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-Sq
-Sm
-Sx
-Sp
-Sp
-Sp
-Sp
-SO
-Sm
-Sw
-SS
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(23,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Ax
-JW
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TR
-TM
-TW
-TU
-Uc
-Uf
-Uh
-Uj
-TM
-TU
-Uo
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-Sr
-Sn
-Sz
-Sw
-SD
-SF
-SN
-SP
-Sn
-Sw
-ST
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(24,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-ae
-ae
-ae
-ae
-ae
-TK
-TM
-TK
-TM
-TM
-TM
-TM
-TM
-TM
-TK
-TM
-TM
-TK
-ae
-ae
-ae
-ae
-ae
-Sm
-Sn
-Sm
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sm
-Sn
-Sn
-Sm
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(25,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(26,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(27,1,1) = {"
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(28,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(29,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(30,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(31,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(32,1,1) = {"
-Hy
-Hy
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(33,1,1) = {"
-Hy
-Hy
-Mb
-Mb
-zv
-Mb
-Mb
-sN
-IN
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-sp
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-Mb
-Mb
-Mb
-zv
-Mb
-Mb
-sN
-Mb
-mb
-sN
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(34,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-mF
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(35,1,1) = {"
-Hy
-Hy
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-jL
-Pq
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-"}
-(36,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(37,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(38,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(39,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(40,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(41,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(42,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(43,1,1) = {"
-Hy
-Hy
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-jL
-Pq
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(44,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(45,1,1) = {"
-Hy
-Hy
-PU
-PU
-Ft
-PU
-PU
-FX
-Py
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-tu
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-PU
-PU
-PU
-Ft
-PU
-PU
-FX
-PU
-in
-FX
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(46,1,1) = {"
-Hy
-Hy
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(47,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(48,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(49,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(50,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(51,1,1) = {"
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(52,1,1) = {"
-ar
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-ar
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(53,1,1) = {"
-as
-nW
-pf
-Hk
-qV
-kw
-eD
-wa
-Di
-HL
-nW
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(54,1,1) = {"
-as
-nW
-nV
-ru
-CK
-pT
-CK
-pT
-cm
-JI
-vW
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-"}
-(55,1,1) = {"
-as
-nW
-wh
-oT
-pT
-CK
-pT
-CK
-CJ
-sb
-DL
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(56,1,1) = {"
-as
-nW
-EX
-ru
-CK
-pT
-CK
-pT
-cm
-Jc
-ZQ
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(57,1,1) = {"
-as
-nW
-Qs
-oT
-pT
-CK
-pT
-CK
-CJ
-Wf
-Kn
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(58,1,1) = {"
-as
-nW
-BG
-ru
-CK
-pT
-CK
-pT
-cm
-GW
-YX
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(59,1,1) = {"
-as
-nW
-Bm
-oT
-pT
-CK
-pT
-CK
-CJ
-Mi
-KQ
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(60,1,1) = {"
-as
-nW
-uM
-ru
-CK
-pT
-CK
-pT
-cm
-Or
-Eo
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(61,1,1) = {"
-as
-nW
-Hr
-oT
-pT
-CK
-pT
-CK
-CJ
-nj
-qv
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(62,1,1) = {"
-as
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(63,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-ar
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(64,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aK
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(65,1,1) = {"
-as
-aJ
-aJ
-bd
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(66,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-bd
-aJ
-aJ
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-bN
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(67,1,1) = {"
-as
-aK
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(68,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-bd
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-cl
-cl
-cl
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(69,1,1) = {"
-as
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-bd
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(70,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(71,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(72,1,1) = {"
-as
-aJ
-bd
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(73,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-bd
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(74,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-Hf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(75,1,1) = {"
-as
-aM
-be
-bf
-be
-be
-be
-be
-bf
-be
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-fG
-dG
-dG
-fZ
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(76,1,1) = {"
-as
-aN
-bf
-be
-bf
-bf
-bf
-bf
-be
-bf
-aN
-dA
-dG
-ed
-dG
-dG
-dG
-dG
-dG
-dG
-eT
-dG
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(77,1,1) = {"
-as
-aM
-be
-bo
-bU
-bU
-bU
-bU
-da
-be
-aM
-dA
-dG
-dG
-dG
-eJ
-dG
-dG
-dG
-dG
-dG
-dG
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(78,1,1) = {"
-as
-aN
-bf
-bp
-bB
-bB
-bB
-bB
-cP
-bf
-aN
-dA
-dG
-dG
-dG
-dG
-eT
-dG
-dG
-dG
-eJ
-dG
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(79,1,1) = {"
-as
-aM
-be
-bq
-an
-bS
-bS
-an
-cQ
-be
-aM
-dA
-dG
-dG
-dG
-ep
-dG
-dG
-ed
-dG
-dG
-fG
-fZ
-ae
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Jq
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-xi
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-xi
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-aj
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(80,1,1) = {"
-as
-aM
-bf
-bp
-an
-bS
-bS
-an
-cP
-bf
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-fG
-dG
-dG
-fZ
-ae
-Vu
-Ru
-wn
-Cy
-eS
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-sx
-sx
-zH
-sx
-sx
-sx
-zH
-sx
-sx
-sx
-sx
-zH
-sx
-zH
-sx
-sx
-sx
-sx
-zH
-sx
-sx
-sx
-zH
-sx
-sx
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(81,1,1) = {"
-as
-aN
-be
-ag
-bB
-bB
-bB
-bB
-at
-be
-aN
-dA
-dG
-ed
-dG
-dG
-dG
-dG
-eJ
-dG
-eT
-dG
-fZ
-ae
-Vu
-Vu
-Vu
-Cy
-gU
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-ET
-ET
-ET
-XE
-XE
-dD
-XE
-Sl
-Bs
-Cp
-li
-Bs
-Sl
-XE
-dD
-XE
-XE
-ET
-ET
-ET
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(82,1,1) = {"
-as
-aM
-bf
-bB
-bB
-ao
-aA
-bB
-bB
-bf
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-fZ
-ae
-Vu
-Vu
-Vu
-Cy
-eS
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-Fp
-Fp
-Fp
-XE
-XE
-XE
-XE
-gE
-yU
-LD
-ix
-yU
-Mq
-ix
-ih
-Mq
-NA
-XE
-XE
-XE
-XE
-Fp
-Fp
-Fp
-Fp
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(83,1,1) = {"
-as
-aN
-be
-bB
-ao
-ax
-aB
-aA
-bB
-bf
-aN
-dA
-dG
-dG
-ep
-dG
-eT
-dG
-dG
-dG
-eJ
-dG
-fZ
-ae
-Vu
-kn
-Ru
-Cy
-eS
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-XE
-Sl
-Al
-HX
-cq
-Re
-Jw
-XW
-FY
-XW
-XW
-FY
-XW
-FJ
-Ic
-Al
-SG
-HW
-XE
-XE
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(84,1,1) = {"
-as
-aM
-bf
-bB
-at
-bU
-bU
-ag
-bB
-be
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-ed
-dG
-dG
-fG
-fZ
-ae
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-XE
-XE
-XE
-ti
-Ri
-Ri
-Rg
-Rs
-iU
-RA
-iU
-iU
-RA
-iU
-RG
-qY
-Ri
-Ri
-RY
-Sl
-XE
-XE
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-jQ
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(85,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-Pe
-Pg
-Rd
-Rg
-Rk
-Rk
-Rm
-Tv
-RD
-RA
-RD
-RD
-RA
-RD
-tS
-Rm
-ii
-ii
-qY
-lE
-Pg
-vu
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(86,1,1) = {"
-as
-aO
-bg
-bg
-bG
-bV
-bV
-bV
-bV
-bV
-dq
-dA
-dI
-dH
-dH
-eL
-eL
-eL
-eL
-eL
-eL
-eL
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-Pe
-Qa
-Re
-Rm
-vz
-vz
-Rm
-DI
-RA
-RA
-RA
-RA
-RA
-RA
-RF
-Rm
-vz
-vz
-Rm
-Ic
-xl
-vu
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(87,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bV
-bV
-bV
-bV
-bV
-bV
-dA
-dH
-dH
-dH
-eK
-eK
-eK
-eK
-eK
-eK
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-Pe
-RD
-jr
-lf
-Rk
-Rk
-Rm
-CG
-Pg
-RA
-Pg
-Pg
-RA
-Pg
-tp
-Rm
-ii
-ii
-AD
-Cd
-RD
-vu
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(88,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bW
-ct
-ct
-ct
-dj
-bV
-dA
-dH
-dH
-dH
-eK
-eV
-fn
-fn
-fn
-fO
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-XE
-XE
-XE
-Et
-rh
-rh
-lf
-Rs
-iU
-RA
-iU
-iU
-RA
-iU
-RG
-AD
-rh
-rh
-Sy
-Sl
-XE
-XE
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(89,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ee
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-XE
-Sl
-Al
-nC
-cq
-Re
-qc
-nB
-pk
-nB
-nB
-pk
-nB
-Dn
-Ic
-Al
-NW
-HW
-XE
-XE
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(90,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ef
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-Fp
-Fp
-Fp
-XE
-XE
-XE
-XE
-Ro
-Rz
-uG
-RC
-Rz
-Dm
-RC
-RE
-Dm
-sT
-XE
-XE
-XE
-XE
-Fp
-Fp
-Fp
-Fp
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(91,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ef
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-ET
-ET
-ET
-XE
-XE
-zw
-XE
-Sl
-zw
-Fe
-Fe
-zw
-Sl
-XE
-pv
-XE
-XE
-ET
-ET
-ET
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(92,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ef
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-pX
-Rc
-Rc
-Rc
-pX
-Rc
-Rc
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(93,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bY
-cv
-cv
-cv
-dl
-bV
-dA
-dH
-eg
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-Vg
-Vg
-Vl
-Vh
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Zt
-aj
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-aj
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(94,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bV
-bV
-bV
-bV
-bV
-bV
-dA
-dH
-dH
-dH
-eK
-eX
-fp
-fp
-fH
-fQ
-eK
-fZ
-Vu
-Ru
-Ru
-xM
-Ru
-Ru
-Ru
-Ru
-xM
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-Nr
-Th
-JR
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-Yx
-Nq
-Nq
-Nq
-Nq
-Yx
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-dZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(95,1,1) = {"
-as
-aP
-bg
-bg
-bH
-bZ
-bZ
-bZ
-bZ
-dm
-dr
-dA
-dH
-dH
-dH
-eK
-eU
-eU
-eK
-eK
-eK
-eK
-fZ
-Vu
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-SW
-Ti
-Rq
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-wd
-dZ
-TY
-Vv
-dZ
-dZ
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-dZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(96,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-Vu
-YE
-Ru
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Ru
-Zi
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-Tf
-Tj
-Rv
-QY
-Pf
-XH
-SH
-SH
-QY
-TI
-Rr
-SV
-SV
-Rr
-TI
-QY
-SH
-SH
-XH
-Pf
-QY
-dZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(97,1,1) = {"
-as
-aS
-bi
-ah
-au
-ay
-ay
-ay
-ay
-aE
-aS
-dB
-dM
-eh
-eh
-eh
-eY
-fq
-fz
-fz
-fz
-fS
-fZ
-Vu
-Ru
-Ru
-Vu
-VW
-wj
-wj
-wj
-BK
-Vu
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-wy
-Vg
-Vg
-Vg
-Vg
-TI
-TI
-TI
-TI
-TI
-TI
-dZ
-Ru
-Ru
-Ru
-Ru
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(98,1,1) = {"
-as
-aS
-bi
-bv
-av
-az
-az
-az
-az
-aF
-aS
-dB
-dN
-ei
-ei
-ei
-eZ
-fr
-ei
-ei
-ei
-fJ
-fZ
-Vu
-Ru
-Ru
-Vu
-sl
-cj
-Dk
-Dk
-Dk
-yK
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-yA
-Ga
-xe
-wl
-TZ
-Vi
-Vi
-Vi
-VJ
-Vi
-VS
-Vu
-YE
-Ru
-Ru
-Wt
-WE
-Xs
-XC
-Zp
-VI
-Yr
-Zw
-YI
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(99,1,1) = {"
-as
-aS
-bi
-ak
-aw
-aw
-aw
-aw
-aw
-aw
-aw
-dB
-dM
-eh
-dN
-ei
-eZ
-fr
-ei
-fJ
-fz
-fS
-fZ
-Vu
-Ru
-Ru
-Vu
-sl
-Lg
-tC
-tC
-tC
-ym
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-rE
-Ga
-Iq
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-Wv
-WJ
-Xv
-XD
-XD
-VI
-Ys
-XD
-YJ
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(100,1,1) = {"
-as
-aS
-bi
-bi
-bI
-ca
-cw
-cS
-dd
-cS
-ds
-dB
-dO
-ei
-dN
-ei
-fa
-fr
-ei
-fJ
-ei
-fT
-fZ
-Vu
-Ru
-Ru
-Vu
-DF
-JZ
-JZ
-JZ
-qz
-Vu
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-HQ
-Ga
-nn
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-Wv
-WK
-Xw
-XD
-XD
-VI
-Yu
-XD
-YJ
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-ce
-ap
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-"}
-(101,1,1) = {"
-as
-aS
-bi
-aS
-bJ
-cb
-cx
-cT
-cy
-cT
-dt
-dB
-dP
-ej
-dN
-ei
-eZ
-fr
-ei
-fJ
-fA
-fU
-fZ
-Vu
-YE
-Ru
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Ru
-Zi
-Vu
-ae
-ae
-ae
-wy
-pb
-Ga
-ME
-wl
-Uu
-Vj
-Vj
-Vm
-Vj
-Vj
-XU
-Vu
-Ru
-Ru
-Ru
-Wt
-WE
-Xx
-Zk
-XV
-Yl
-Zs
-Yy
-XD
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ch
-cg
-cf
-cf
-cf
-ce
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(102,1,1) = {"
-as
-aS
-bi
-bt
-bK
-cb
-cy
-cy
-cy
-cT
-dt
-dB
-dN
-ei
-ei
-ei
-eZ
-fr
-ei
-ei
-ei
-fJ
-fZ
-Vu
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-kr
-Ga
-Cw
-wl
-Up
-Vj
-Vj
-Vm
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Zi
-VI
-VI
-VI
-VI
-VI
-VI
-VI
-VI
-Yl
-VI
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-ce
-ap
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-"}
-(103,1,1) = {"
-as
-aS
-bi
-aS
-bL
-cb
-cx
-cT
-cy
-cT
-dt
-dB
-dP
-ej
-ej
-ej
-fb
-fs
-fA
-fA
-fA
-fU
-fZ
-Vu
-Ru
-Ru
-MK
-Ru
-Ru
-Ru
-Ru
-MK
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-Ct
-Ga
-kh
-wl
-Ur
-Vm
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-VM
-VQ
-WN
-VZ
-VQ
-VQ
-WH
-ZD
-WW
-Xe
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(104,1,1) = {"
-as
-aS
-bi
-bi
-bM
-cc
-cz
-cU
-de
-cU
-du
-dB
-aG
-aG
-aR
-aG
-aG
-aG
-aG
-bh
-aG
-aG
-fZ
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-wy
-wy
-Ga
-wy
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-TJ
-Ru
-Ru
-Ru
-WB
-VR
-Wb
-Wl
-Wz
-VQ
-WH
-WO
-WW
-Xf
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(105,1,1) = {"
-as
-ab
-ad
-al
-al
-al
-al
-al
-aC
-al
-ab
-dB
-dK
-dK
-dJ
-dK
-dK
-dK
-dK
-dJ
-dK
-dK
-fZ
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-ae
-ae
-ae
-ae
-wy
-wy
-wy
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vw
-Ru
-Ru
-Ru
-VK
-VR
-Wc
-Wm
-Wz
-VQ
-WH
-WP
-WW
-Xg
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(106,1,1) = {"
-as
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-dB
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-fZ
-aq
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-YE
-Ru
-Ru
-VL
-VQ
-Wd
-Wd
-VQ
-VQ
-WH
-WQ
-WW
-Xh
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(107,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aq
-uc
-ue
-ue
-uf
-ue
-ue
-ue
-uf
-ue
-ue
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vj
-Vm
-Vj
-VN
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-WB
-VQ
-VQ
-VQ
-VQ
-VQ
-WH
-WR
-WW
-Zh
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(108,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-uc
-uf
-uf
-uf
-uf
-ug
-uf
-uf
-uf
-uf
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Uu
-Vj
-Vj
-Vj
-Vj
-Vj
-Yt
-Vu
-Ru
-Ru
-Ru
-WB
-VQ
-VZ
-VZ
-VQ
-VQ
-WH
-WV
-WW
-WW
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(109,1,1) = {"
-as
-aT
-bj
-aT
-aT
-aT
-aT
-aT
-aT
-bj
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-uc
-ue
-ue
-uf
-ue
-ue
-ue
-uf
-ue
-ue
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vj
-Vj
-Vj
-Vm
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-WB
-VR
-We
-Wo
-Wz
-VQ
-VQ
-VQ
-ZE
-VM
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(110,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-ek
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-ud
-uf
-uf
-uf
-uf
-uf
-uf
-uf
-uf
-uf
-ud
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Us
-Vn
-Vj
-Vj
-Vm
-VO
-VP
-Vu
-Ru
-Ru
-Zi
-WB
-VR
-Wk
-Wu
-Wz
-VQ
-VQ
-VQ
-WZ
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(111,1,1) = {"
-as
-aT
-aT
-aT
-bj
-aT
-aT
-bj
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bc
-bc
-bQ
-cs
-bc
-cs
-dh
-bc
-bc
-bc
-aq
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Ut
-Us
-Vs
-VB
-Vs
-VP
-Ut
-Vu
-Ru
-Ru
-Ru
-VK
-VQ
-Wd
-Wd
-VQ
-VZ
-VZ
-VQ
-Xa
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(112,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-eM
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-by
-bR
-bn
-cO
-bn
-di
-by
-bc
-bc
-bO
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-wl
-Vo
-Vo
-Vo
-Vo
-Vo
-wl
-Vu
-Ru
-Ru
-Ru
-VL
-VQ
-VQ
-VQ
-VR
-WA
-WI
-Wz
-Xb
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(113,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bn
-bR
-bn
-bn
-bn
-di
-bn
-bn
-dE
-bP
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-TZ
-Vi
-Vi
-Vi
-Vi
-Vi
-VX
-Vu
-Ru
-Ru
-Ru
-WB
-VQ
-VQ
-VQ
-VR
-WF
-WL
-Wz
-Xc
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(114,1,1) = {"
-as
-aT
-aT
-aT
-bj
-aT
-aT
-bj
-aT
-aT
-aT
-dB
-dQ
-dQ
-es
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bn
-bR
-bn
-bn
-bn
-di
-bn
-bn
-dE
-bT
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Va
-Vp
-Ut
-Ut
-Ut
-Ut
-VU
-Vu
-YE
-Ru
-Ru
-VM
-VY
-ZC
-VQ
-VQ
-Wd
-Wd
-ZC
-Xd
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(115,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-et
-dQ
-fc
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bn
-bn
-bn
-bn
-bn
-bn
-bn
-bn
-dE
-bP
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vq
-Ut
-Vr
-Vr
-Ut
-VU
-Vu
-Ru
-Ru
-Ru
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(116,1,1) = {"
-as
-aT
-bj
-aT
-aT
-aT
-aT
-aT
-aT
-bj
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bz
-bn
-bn
-bn
-bn
-bn
-bz
-bc
-bc
-ck
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Uu
-Ut
-Vt
-Ut
-Ut
-Ut
-XU
-Vu
-Ru
-Ru
-Ru
-Vd
-WS
-WS
-Zl
-XX
-Ym
-Vd
-YB
-YK
-YP
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(117,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-ap
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-VD
-VU
-Vu
-Ru
-Ru
-Ru
-WC
-WT
-WS
-XJ
-XZ
-WS
-Vd
-YC
-YL
-YP
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(118,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Vr
-Ut
-Ut
-Ut
-Wh
-Vu
-Ru
-Ru
-Zi
-Ve
-WS
-WS
-XK
-Ya
-WS
-Vd
-YD
-YM
-XN
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(119,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dU
-el
-el
-el
-fd
-ft
-fB
-fB
-fB
-fV
-fZ
-aI
-aI
-aI
-ar
-aI
-aI
-aI
-ar
-aI
-aI
-aI
-ar
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-Ut
-VU
-TJ
-Ru
-Ru
-Ru
-Xk
-WS
-WS
-XM
-XZ
-WS
-Vd
-YC
-YN
-YQ
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(120,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-ga
-ga
-ga
-dB
-gN
-gO
-gO
-dB
-hx
-hx
-hx
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vr
-Ut
-Ut
-Ut
-Ut
-VU
-Vw
-Ru
-Ru
-Ru
-Xm
-WS
-WS
-XN
-Yb
-Zq
-Vd
-Zx
-XZ
-YT
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(121,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gb
-ga
-gq
-dB
-gO
-gO
-gP
-dB
-hy
-hJ
-hO
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-VD
-Ut
-Vr
-VV
-Vu
-Ru
-Ru
-Ru
-Xn
-WS
-WS
-WS
-WS
-WS
-Vd
-XN
-WS
-YU
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-ML
-ML
-ML
-ML
-ML
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(122,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gc
-ga
-gc
-dB
-gO
-gO
-gO
-dB
-hz
-hK
-hP
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-Ut
-VU
-Vu
-YE
-Ru
-Ru
-WC
-WT
-WS
-WS
-WS
-WS
-Vd
-Vd
-Yw
-Vd
-Vd
-Vd
-Vd
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(123,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gd
-ga
-ga
-dB
-gO
-gN
-gO
-dB
-hz
-hK
-hP
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Uu
-Ut
-Vr
-Ut
-Ut
-Ut
-XU
-Vu
-Ru
-Ru
-Ru
-WC
-WT
-WS
-WS
-WS
-WS
-Vd
-Ym
-WS
-WS
-WS
-WS
-Zf
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(124,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gc
-ga
-gq
-dB
-gO
-gO
-gO
-dB
-hA
-hL
-hQ
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-VD
-VU
-Vu
-Ru
-Ru
-Ru
-WC
-WT
-WS
-WS
-WS
-WS
-Yv
-WS
-WS
-WS
-YY
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(125,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dW
-en
-en
-en
-ff
-fv
-fC
-fC
-fC
-fX
-dB
-gc
-ga
-gc
-dB
-gP
-gO
-gO
-dB
-hx
-hx
-hx
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Us
-Vn
-Ut
-VE
-Ut
-VO
-VP
-Vu
-Ru
-Ru
-Ru
-Vd
-WS
-WS
-Zn
-WS
-WS
-WS
-WS
-WS
-WS
-YZ
-WS
-Zq
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(126,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-aH
-aH
-aX
-aH
-aH
-aH
-aH
-br
-aH
-aH
-fZ
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Ut
-Us
-Vs
-VF
-Vs
-VP
-Ut
-Vu
-Ru
-Ru
-Zi
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-YF
-WS
-WS
-WS
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(127,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dS
-dS
-dR
-dS
-dS
-dS
-dS
-dR
-dS
-dS
-dB
-ge
-gl
-gr
-dB
-gQ
-gR
-gQ
-dB
-hB
-hD
-hD
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-wl
-Vo
-Vo
-Vo
-Vo
-Vo
-wl
-Vu
-Ru
-Ru
-Ru
-Vd
-WU
-Xy
-XP
-Yc
-Yc
-Vd
-Zy
-WS
-WS
-WS
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(128,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dB
-gf
-gl
-gr
-dB
-gR
-gQ
-gR
-dB
-hC
-hC
-hC
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Uv
-Ru
-Ru
-Ru
-Vd
-Xj
-Xz
-XQ
-Yh
-Yc
-Vd
-YH
-WS
-WS
-Zb
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(129,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-as
-gg
-gl
-gr
-dB
-gQ
-hg
-gQ
-dB
-hD
-hD
-hD
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vc
-Vz
-Vc
-Vc
-Vz
-Vc
-Wi
-YR
-Ru
-Ru
-Ru
-Vd
-Zj
-XA
-XR
-Yj
-Zr
-Yg
-WS
-WS
-WS
-Zc
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-In
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(130,1,1) = {"
-as
-aY
-bk
-bk
-bk
-bk
-cA
-cA
-cA
-cA
-dv
-dB
-dX
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dB
-gh
-gl
-gr
-dB
-gR
-gQ
-gR
-dB
-hD
-hD
-hD
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vc
-Vc
-Vc
-Vc
-Vc
-Vc
-Vk
-UE
-Ru
-Ru
-Ru
-Vd
-Xr
-XB
-YW
-YW
-YW
-Yw
-WS
-WS
-WS
-WS
-WS
-Zq
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(131,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dX
-dY
-dY
-eo
-eo
-eo
-eo
-dY
-dY
-dY
-dB
-gi
-gl
-gr
-dB
-gQ
-gR
-gQ
-dB
-hE
-hE
-hE
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vf
-Vk
-Vy
-Vk
-Vy
-Vg
-Vg
-Vg
-Wq
-Ws
-Ws
-Vg
-Vg
-Vg
-WS
-WS
-WS
-Vd
-WS
-WS
-WS
-WS
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(132,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dB
-gf
-gl
-gr
-dB
-gR
-gQ
-gR
-dB
-hD
-hD
-hR
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vb
-Vk
-Xp
-Vk
-Xp
-Vg
-Wj
-Wp
-Ti
-YG
-Ti
-Wp
-Wj
-Vg
-XS
-Yk
-Yo
-Vd
-Zz
-YO
-YV
-Zd
-Ze
-Zg
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(133,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-dY
-dY
-bu
-bA
-bA
-bD
-dY
-eo
-dY
-fZ
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Vg
-Vg
-Vg
-Wp
-Vg
-Wp
-Vg
-Vg
-Vg
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-zb
-qn
-pF
-qn
-tD
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(134,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-eo
-dY
-bw
-bs
-bs
-bE
-dY
-eo
-dY
-dB
-gj
-gk
-gs
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Vg
-Wj
-Vg
-Wj
-Vg
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-zb
-zb
-tD
-tD
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(135,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-eo
-dY
-bw
-bs
-bs
-bE
-dY
-eo
-dY
-dB
-gk
-gm
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Vg
-Vg
-Vg
-Vg
-Vg
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(136,1,1) = {"
-as
-ba
-bm
-bm
-bm
-bm
-cB
-cB
-cB
-cB
-dx
-dB
-dY
-eo
-dY
-bx
-bC
-bC
-bF
-dY
-dY
-dY
-dB
-gk
-gn
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(137,1,1) = {"
-as
-ac
-ac
-am
-ac
-ac
-ac
-ac
-aD
-ac
-ac
-dB
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dB
-gk
-go
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(138,1,1) = {"
-as
-aW
-aW
-aV
-aW
-aW
-aW
-aW
-aV
-aW
-aW
-dB
-dY
-dY
-dY
-eo
-eo
-eo
-eo
-dY
-dY
-fY
-dB
-gk
-gk
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(139,1,1) = {"
-as
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-dB
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-fY
-dB
-gk
-gk
-gt
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(140,1,1) = {"
-ar
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-ar
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-ap
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"ab" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"ac" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"ad" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"ae" = (
+/turf/unsimulated/mineral/virgo3b,
+/area/space)
+"af" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"ag" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ah" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Jury Box"
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"ai" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"aj" = (
+/obj/structure/sign/warning{
+ name = "\improper STAND AWAY FROM TRACK EDGE"
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"ak" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"al" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"am" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"an" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"ao" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ap" = (
+/turf/space,
+/area/space)
+"aq" = (
+/obj/effect/step_trigger/teleporter/random,
+/turf/space,
+/area/space)
+"ar" = (
+/turf/unsimulated/wall,
+/area/space)
+"as" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"at" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"au" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet/corners{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"av" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aw" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"ax" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ay" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"az" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aA" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aB" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aC" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"aD" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"aE" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aF" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aG" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"aH" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"aI" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/space)
+"aJ" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"aK" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"aL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"aM" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aN" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aO" = (
+/obj/structure/table/rack/holorack,
+/obj/item/clothing/under/dress/dress_saloon,
+/obj/item/clothing/head/pin/flower,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"aP" = (
+/obj/effect/landmark/costume,
+/obj/structure/table/rack/holorack,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"aQ" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"aR" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"aS" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"aT" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"aU" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_plating)
+"aV" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"aW" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"aX" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"aY" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"aZ" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"ba" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"bc" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/supply)
+"bd" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"be" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bf" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bg" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"bh" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"bi" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bj" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn"
+ },
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"bk" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bl" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bm" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bn" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bo" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bp" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bq" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"br" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"bs" = (
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bt" = (
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bu" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 8;
+ layer = 3.4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bv" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bw" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bx" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 4;
+ layer = 3.4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"by" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bz" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bA" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 8
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bB" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"bC" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bD" = (
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 8
+ },
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bE" = (
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bF" = (
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 4
+ },
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"bH" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bI" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Court Reporter's Box"
+ },
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bJ" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bK" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bL" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bM" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Witness Box"
+ },
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bN" = (
+/obj/effect/landmark/ai_multicam_room,
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"bO" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "supply_cc";
+ name = "Centcom Supply Depot"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"bP" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_r"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"bQ" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"bR" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bS" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"bT" = (
+/turf/simulated/shuttle/wall/alien/hard_corner,
+/area/unknown/dorm3)
+"bU" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bV" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"bW" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bX" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bY" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bZ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"ca" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cb" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cc" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cd" = (
+/turf/unsimulated/wall,
+/area/ai_multicam_room)
+"ce" = (
+/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
+/turf/space/transit/south,
+/area/space)
+"cf" = (
+/turf/space/transit/south,
+/area/space)
+"cg" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/south,
+/area/space)
+"ch" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "belter_transit";
+ name = "Belter Transit"
+ },
+/turf/space/transit/south,
+/area/space)
+"ci" = (
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"cj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"ck" = (
+/turf/simulated/shuttle/wall/alien,
+/area/unknown/dorm3)
+"cl" = (
+/obj/machinery/door/airlock/alien/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"cm" = (
+/obj/item/toy/chess/pawn_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"cn" = (
+/obj/item/weapon/bedsheet/rddouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"co" = (
+/obj/structure/prop/alien/computer{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"cp" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"cq" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"cr" = (
+/turf/simulated/shuttle/wall/alien/blue/hard_corner,
+/area/unknown/dorm5)
+"cs" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"ct" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cu" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cv" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cw" = (
+/obj/structure/table/woodentable/holotable,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cx" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cy" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cz" = (
+/obj/structure/table/woodentable/holotable,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"cB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"cC" = (
+/turf/simulated/shuttle/wall/alien/blue,
+/area/unknown/dorm5)
+"cD" = (
+/turf/simulated/shuttle/wall/alien/blue/hard_corner,
+/area/unknown/dorm6)
+"cE" = (
+/turf/simulated/shuttle/wall/alien/blue,
+/area/unknown/dorm6)
+"cF" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cG" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cH" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cI" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cJ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cK" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cL" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cM" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cN" = (
+/obj/machinery/door/airlock/alien/blue/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cO" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "supply_shuttle";
+ pixel_x = -25;
+ req_one_access = list(13,31);
+ tag_door = "supply_shuttle_hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"cP" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"cQ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"cR" = (
+/obj/machinery/door/airlock/alien/blue/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cS" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cT" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cU" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cV" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cW" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cX" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cY" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cZ" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"da" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"db" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dc" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dd" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"de" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"df" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dg" = (
+/turf/unsimulated/wall{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"dh" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"di" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"dj" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dk" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dl" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dm" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dn" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"do" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dp" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"dq" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"dr" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"ds" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"dt" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"du" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"dv" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dw" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dx" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dy" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkfive"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"dz" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"dA" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"dB" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"dC" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dD" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_station";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"dE" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/supply)
+"dF" = (
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"dG" = (
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"dH" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"dI" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"dJ" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"dK" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dL" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unksix"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"dM" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dN" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dO" = (
+/obj/structure/holohoop,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dP" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dQ" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"dR" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"dS" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dT" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dU" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dV" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/under/color/red,
+/obj/item/weapon/holo/esword/red,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dW" = (
+/obj/structure/table/holotable,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dX" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"dY" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"dZ" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"ea" = (
+/obj/structure/prop/alien/computer/hybrid{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"eb" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"ec" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn Random"
+ },
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"ed" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"ee" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"ef" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eg" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eh" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ei" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ej" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ek" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"el" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"em" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"en" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"eo" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"ep" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eq" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"er" = (
+/obj/structure/prop/alien/computer/hybrid{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"es" = (
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"et" = (
+/obj/effect/overlay/palmtree_l,
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"eu" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"ev" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"ew" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"ex" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"ey" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"ez" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"eA" = (
+/obj/structure/table/alien/blue,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"eB" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"eC" = (
+/obj/structure/table/alien/blue,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"eD" = (
+/obj/effect/floor_decal/sign/small_4,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"eE" = (
+/obj/machinery/telecomms/relay/preset/tether,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"eF" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm5)
+"eG" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"eH" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"eI" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"eJ" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eK" = (
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"eL" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_meetinghall)
+"eM" = (
+/obj/item/weapon/beach_ball,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"eN" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm6)
+"eO" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"eP" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"eQ" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"eR" = (
+/obj/machinery/telecomms/allinone/ert,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"eS" = (
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"eT" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eU" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eV" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eW" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eX" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eY" = (
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"eZ" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fa" = (
+/obj/item/weapon/beach_ball/holoball,
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fb" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fc" = (
+/obj/item/weapon/inflatable_duck,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"fd" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fe" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"ff" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fg" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space,
+/turf/space/transit/north,
+/area/space)
+"fn" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fo" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fp" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fq" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fr" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fs" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ft" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fu" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fv" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fz" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fC" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fG" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"fH" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet{
+ dir = 8
+ },
+/area/holodeck/source_meetinghall)
+"fJ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fK" = (
+/turf/unsimulated/beach/sand{
+ icon_state = "beach"
+ },
+/area/holodeck/source_beach)
+"fO" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fP" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fQ" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fR" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/holodeck/source_beach)
+"fS" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fT" = (
+/obj/structure/holohoop{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fU" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fV" = (
+/obj/structure/table/holotable,
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fW" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/under/color/green,
+/obj/item/weapon/holo/esword/green,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fX" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fY" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"fZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"ga" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gb" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gc" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gd" = (
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"ge" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gf" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gg" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gh" = (
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gi" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gj" = (
+/obj/structure/flora/grass/brown,
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gk" = (
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gl" = (
+/turf/unsimulated/beach/sand{
+ icon_state = "beach"
+ },
+/area/holodeck/holodorm/source_beach)
+"gm" = (
+/obj/effect/landmark{
+ name = "Wolfgirl Spawn"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gn" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"go" = (
+/obj/structure/flora/grass/green,
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gq" = (
+/obj/structure/bed/holobed,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gr" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/holodeck/holodorm/source_beach)
+"gs" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gt" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gE" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"gN" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/holodorm/source_desert)
+"gO" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/holodorm/source_desert)
+"gP" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/holodorm/source_desert)
+"gQ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/holodorm/source_garden)
+"gR" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/holodorm/source_garden)
+"gS" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/holodorm/source_off)
+"gU" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"hg" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/landmark{
+ name = "Catgirl Spawn"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/holodorm/source_garden)
+"hx" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_seating)
+"hy" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hz" = (
+/obj/structure/bed/chair/holochair,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hA" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hB" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hC" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hD" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hE" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hF" = (
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/holodorm/source_space)
+"hJ" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hK" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hL" = (
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hO" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hP" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hQ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hR" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"ig" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/obj/effect/transit/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"ih" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ii" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"in" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"ix" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"iO" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/west,
+/area/space)
+"iU" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"jf" = (
+/turf/space/transit/north,
+/area/space)
+"jr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"jL" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/turf/simulated/floor/maglev{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"jQ" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "specops_transit";
+ name = "Specops Transit"
+ },
+/turf/space/transit/west,
+/area/space)
+"kn" = (
+/obj/structure/fake_stairs/north/bottom{
+ _stair_tag = "stairtest"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"kr" = (
+/obj/machinery/telecomms/server/presets/centcomm,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"kw" = (
+/obj/effect/floor_decal/sign/small_5,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"lf" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"li" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"lE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"mb" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"mF" = (
+/obj/effect/shuttle_landmark{
+ base_area = null;
+ base_turf = null;
+ docking_controller = null;
+ landmark_tag = "escape_transit";
+ name = "Escape Transit"
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"nj" = (
+/obj/item/toy/chess/rook_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"nn" = (
+/obj/machinery/telecomms/allinone/antag{
+ intercept = 1
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"nB" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"nC" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
+ },
+/obj/item/toy/nanotrasenballoon,
+/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"nV" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"nW" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"oI" = (
+/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
+/turf/space/transit/east,
+/area/space)
+"oT" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"pb" = (
+/obj/machinery/telecomms/processor/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"pf" = (
+/obj/effect/floor_decal/sign/small_8,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"pk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"pv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_offsite";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"pF" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "escapepod1_transit";
+ name = "Escapepod 1 Transit"
+ },
+/turf/space/transit/east,
+/area/space)
+"pT" = (
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"pX" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"qc" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"qn" = (
+/turf/space/transit/east,
+/area/space)
+"qv" = (
+/obj/effect/floor_decal/sign/small_h,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"qz" = (
+/turf/space,
+/turf/space/internal_edge/bottomright,
+/area/space)
+"qV" = (
+/obj/effect/floor_decal/sign/small_6,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"qY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"rh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ru" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"rE" = (
+/obj/machinery/telecomms/bus/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"sb" = (
+/obj/item/toy/chess/knight_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"sl" = (
+/turf/space/internal_edge/top,
+/area/space)
+"sp" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"sx" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"sF" = (
+/obj/effect/overmap/bluespace_rift,
+/turf/unsimulated/map,
+/area/overmap)
+"sN" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/obj/effect/transit/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"sT" = (
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ti" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"tp" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"tu" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"tC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"tD" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/east,
+/area/space)
+"tH" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/obj/effect/transit/light{
+ dir = 8
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"tS" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"uc" = (
+/turf/unsimulated/wall,
+/area/centcom/suppy)
+"ud" = (
+/obj/machinery/status_display/supply_display,
+/turf/unsimulated/wall,
+/area/centcom/suppy)
+"ue" = (
+/obj/structure/closet/crate,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/centcom/suppy)
+"uf" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/suppy)
+"ug" = (
+/obj/item/weapon/paper{
+ info = "You're not supposed to be here.";
+ name = "unnerving letter"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/suppy)
+"uG" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"uM" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"vu" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"vz" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"vW" = (
+/obj/effect/floor_decal/sign/small_a,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"wa" = (
+/obj/effect/floor_decal/sign/small_3,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"wd" = (
+/obj/structure/sign/warning/nosmoking_2,
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"wh" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"wj" = (
+/turf/space/internal_edge/left,
+/area/space)
+"wl" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/evac)
+"wn" = (
+/obj/structure/fake_stairs/south/top{
+ _stair_tag = "stairtest"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"wy" = (
+/turf/unsimulated/wall,
+/area/centcom/control)
+"wZ" = (
+/turf/unsimulated/floor{
+ icon_state = "sandwater"
+ },
+/area/beach)
+"xe" = (
+/obj/machinery/account_database{
+ dir = 1;
+ name = "CentComm Accounts database"
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"xi" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"xl" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"xM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"ya" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ direction = 4;
+ name = "thrower_escapeshuttletop(right)";
+ tiles = 0
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"ym" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"yA" = (
+/obj/machinery/telecomms/receiver/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"yK" = (
+/obj/machinery/door/airlock/multi_tile/metal,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"yU" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"zb" = (
+/obj/effect/step_trigger/thrower{
+ direction = 1;
+ name = "thrower_throwup";
+ tiles = 0
+ },
+/turf/space/transit/east,
+/area/space)
+"zv" = (
+/obj/effect/transit/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"zw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_offsite";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"zH" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"zK" = (
+/obj/machinery/door/blast/regular{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"Al" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Av" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/maglev{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"Ax" = (
+/turf/unsimulated/beach/coastline{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"Az" = (
+/turf/unsimulated/beach/coastline,
+/area/beach)
+"AD" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Bm" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Bs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_station";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Bw" = (
+/turf/unsimulated/beach/water,
+/area/beach)
+"BD" = (
+/obj/effect/overlay/palmtree_r,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"BG" = (
+/obj/item/toy/chess/king_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"BK" = (
+/turf/space,
+/turf/space/internal_edge/bottomleft,
+/area/space)
+"Cd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Cn" = (
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Cp" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/centcom/simulated/terminal;
+ base_turf = /turf/simulated/floor/tiled/techfloor/grid;
+ docking_controller = null;
+ landmark_tag = "escape_cc";
+ name = "Escape Centcom"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"Ct" = (
+/obj/machinery/ntnet_relay,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Cw" = (
+/obj/machinery/r_n_d/server/centcom,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Cy" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"CG" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"CJ" = (
+/obj/item/toy/chess/pawn_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"CK" = (
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Di" = (
+/obj/effect/floor_decal/sign/small_2,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Dk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"Dm" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Dn" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Dw" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/snacks/chips,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"DF" = (
+/turf/space,
+/turf/space/internal_edge/topright,
+/area/space)
+"DI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"DL" = (
+/obj/effect/floor_decal/sign/small_b,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"El" = (
+/turf/space/transit/west,
+/area/space)
+"Eo" = (
+/obj/effect/floor_decal/sign/small_g,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Et" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ET" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"EX" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Fa" = (
+/obj/structure/table/standard,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"Fe" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"Fp" = (
+/turf/simulated/floor/maglev,
+/area/centcom/simulated/terminal)
+"Ft" = (
+/obj/effect/transit/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"FH" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/obj/item/toy/plushie/mouse{
+ desc = "A plushie of a small fuzzy rodent.";
+ name = "Woodrat"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"FJ" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"FT" = (
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"FX" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/obj/effect/transit/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"FY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Ga" = (
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Gq" = (
+/turf/unsimulated/wall,
+/area/beach)
+"Gs" = (
+/turf/space,
+/turf/space/transit/north,
+/area/space)
+"Gw" = (
+/obj/effect/overlay/palmtree_l,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"GW" = (
+/obj/item/toy/chess/king_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Hf" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/north;
+ landmark_tag = "ninja_transit";
+ name = "Ninja Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"Hk" = (
+/obj/effect/floor_decal/sign/small_7,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Hr" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Hy" = (
+/turf/unsimulated/mineral{
+ icon = 'icons/turf/transit_vr.dmi';
+ icon_state = "rock"
+ },
+/area/space)
+"HL" = (
+/obj/effect/floor_decal/sign/small_1,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"HQ" = (
+/obj/machinery/telecomms/broadcaster/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"HW" = (
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"HX" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/medical/west,
+/obj/item/weapon/storage/firstaid,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Ic" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Ik" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"In" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/north;
+ landmark_tag = "skipjack_transit";
+ name = "Skipjack Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"Iq" = (
+/obj/machinery/telecomms/hub/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"IN" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"IR" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Jc" = (
+/obj/item/toy/chess/bishop_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Jq" = (
+/obj/structure/sign/warning/docking_area,
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"Jw" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Jx" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Jz" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/north,
+/area/space)
+"JI" = (
+/obj/item/toy/chess/rook_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"JL" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/north,
+/area/space)
+"JR" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"JW" = (
+/turf/unsimulated/beach/water{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"JZ" = (
+/turf/space/internal_edge/right,
+/area/space)
+"Kj" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/simulated/sky/virgo3b/south;
+ landmark_tag = "tether_backup_transit";
+ name = "Tether Backup Transit"
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Kn" = (
+/obj/effect/floor_decal/sign/small_d,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"KQ" = (
+/obj/effect/floor_decal/sign/small_f,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Lg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"Lz" = (
+/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"LD" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Mb" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Me" = (
+/turf/simulated/floor/smole/desert,
+/area/holodeck/source_smoleworld)
+"Mf" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Mi" = (
+/obj/item/toy/chess/bishop_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Mq" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ME" = (
+/obj/machinery/computer/rdservercontrol{
+ badmin = 1;
+ dir = 1;
+ name = "Master R&D Server Controller"
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"MK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"ML" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/east,
+/area/space)
+"Nj" = (
+/obj/item/clothing/head/collectable/paper,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"No" = (
+/obj/item/weapon/beach_ball,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"Nq" = (
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Nr" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Nt" = (
+/turf/unsimulated/beach/sand{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"NA" = (
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"NW" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/structure/closet/walllocker/medical/east,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Oj" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ direction = 8;
+ name = "thrower_escapeshuttletop(left)";
+ tiles = 0
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Or" = (
+/obj/item/toy/chess/knight_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"OY" = (
+/turf/unsimulated/map,
+/area/overmap)
+"Pe" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"Pf" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Pg" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Pi" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/west,
+/area/space)
+"Pq" = (
+/turf/simulated/floor/maglev{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"Py" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"PM" = (
+/turf/simulated/floor/smole/megablocks,
+/area/holodeck/source_smoleworld)
+"PU" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Qa" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Qs" = (
+/obj/item/toy/chess/queen_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"QY" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Rc" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"Rd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Re" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rg" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Ri" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rk" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rm" = (
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Ro" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rq" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Rr" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Rs" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Ru" = (
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Rv" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Rz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"RA" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"RD" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"RF" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RG" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RV" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 6;
+ teleport_z_offset = 6
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"RY" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Sh" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Sl" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/thull,
+/area/shuttle/escape)
+"Sm" = (
+/turf/simulated/shuttle/wall/alien/blue/hard_corner,
+/area/unknown/dorm4)
+"Sn" = (
+/turf/simulated/shuttle/wall/alien/blue,
+/area/unknown/dorm4)
+"So" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Sp" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Sq" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Sr" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Ss" = (
+/obj/machinery/door/airlock/alien/blue/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Su" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"Sw" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"Sx" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"Sy" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Sz" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SA" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SB" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SC" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkfour"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"SD" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SE" = (
+/obj/structure/prop/alien/computer/hybrid{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SF" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SG" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/obj/item/clothing/head/beret/nanotrasen,
+/obj/item/clothing/head/soft/nanotrasen,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"SH" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"SK" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SN" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SO" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SP" = (
+/obj/structure/table/alien/blue,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SQ" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm4)
+"SR" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"SS" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"ST" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"SV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"SW" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Transfer";
+ tele_network = "centcom"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"SZ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Ta" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Tb" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Tc" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Tf" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Th" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Ti" = (
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Tj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Tk" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tl" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tm" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tn" = (
+/obj/structure/table/standard,
+/obj/item/clothing/under/color/rainbow,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/head/collectable/petehat{
+ pixel_y = 5
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"To" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tp" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tq" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tr" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkthree"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Ts" = (
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"Tv" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Tx" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Ty" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tz" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"TA" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"TC" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm3)
+"TD" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"TE" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"TF" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"TG" = (
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"TH" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"TI" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/terminal)
+"TJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"TK" = (
+/turf/simulated/shuttle/wall/alien/hard_corner,
+/area/unknown/dorm2)
+"TM" = (
+/turf/simulated/shuttle/wall/alien,
+/area/unknown/dorm2)
+"TN" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TP" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TQ" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TR" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TS" = (
+/obj/machinery/door/airlock/alien/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TT" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TU" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TV" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TW" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TX" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TY" = (
+/obj/machinery/door/firedoor,
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/terminal)
+"TZ" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Ua" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ub" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unktwo"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Uc" = (
+/obj/item/weapon/bedsheet/rddouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ud" = (
+/obj/structure/prop/alien/computer{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uf" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ug" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uh" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ui" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uj" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uk" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm2)
+"Ul" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Um" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Uo" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Up" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Ur" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Us" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Ut" = (
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Uu" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Uv" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/bed/chair,
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/main_hall)
+"Uw" = (
+/turf/simulated/shuttle/wall/alien/hard_corner,
+/area/unknown/dorm1)
+"Ux" = (
+/turf/simulated/shuttle/wall/alien,
+/area/unknown/dorm1)
+"Uz" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UA" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UC" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UD" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UE" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/bed/chair,
+/obj/machinery/status_display{
+ pixel_y = 29
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/main_hall)
+"UF" = (
+/obj/machinery/door/airlock/alien/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UG" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UH" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UI" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UJ" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UK" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UM" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UN" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkone"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UP" = (
+/obj/item/weapon/bedsheet/rddouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UQ" = (
+/obj/structure/prop/alien/computer{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UR" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"US" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UT" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UU" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UV" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UW" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm1)
+"UX" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UY" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UZ" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"Va" = (
+/obj/effect/floor_decal/rust/steel_decals_rusted2,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vb" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vc" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vd" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"Ve" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/obj/structure/sign/department/medbay,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/simulated/medical)
+"Vf" = (
+/obj/machinery/door/airlock{
+ name = "Unit 4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vg" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/living)
+"Vh" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Vi" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vj" = (
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/large_escape_pod2/centcom{
+ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
+ })
+"Vk" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/bathroom)
+"Vl" = (
+/obj/structure/sign/warning{
+ name = "\improper STAND AWAY FROM TRACK EDGE"
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/living)
+"Vm" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/large_escape_pod2/centcom{
+ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
+ })
+"Vn" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vo" = (
+/obj/machinery/door/blast/regular,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vp" = (
+/obj/effect/floor_decal/rust/part_rusted3,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vq" = (
+/obj/effect/floor_decal/rust/part_rusted3,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vr" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vs" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vt" = (
+/obj/effect/floor_decal/rust/mono_rusted3,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vu" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/main_hall)
+"Vv" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/terminal)
+"Vw" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Vy" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vz" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"VB" = (
+/obj/effect/floor_decal/sign/dock/one,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VC" = (
+/turf/unsimulated/beach/sand,
+/area/beach)
+"VD" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VE" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/centcom/simulated/evac;
+ base_turf = /turf/unsimulated/floor/steel;
+ docking_controller = null;
+ landmark_tag = "escapepod1_cc";
+ name = "Centcom Recovery Area"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VF" = (
+/obj/effect/floor_decal/sign/dock/two,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VI" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"VJ" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/restaurant)
+"VL" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/restaurant)
+"VM" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/restaurant)
+"VN" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/large_escape_pod2/centcom{
+ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
+ })
+"VO" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VP" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VQ" = (
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"VR" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"VS" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VU" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VV" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VW" = (
+/turf/space,
+/turf/space/internal_edge/topleft,
+/area/space)
+"VX" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VY" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"VZ" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wb" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/pastatomato,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wc" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wd" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"We" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/fries,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wf" = (
+/obj/item/toy/chess/queen_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Wh" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Wi" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Wj" = (
+/obj/effect/blocker,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/living)
+"Wk" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/snacks/cheeseburger,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wl" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wm" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/lasagna,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wo" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/hotdog,
+/obj/item/weapon/reagent_containers/food/snacks/hotdog{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wp" = (
+/obj/machinery/cryopod/robot/door/dorms,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Wq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/machinery/computer/cryopod/dorms{
+ name = "Company Property Retention System";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Ws" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Wt" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Wu" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wv" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Wz" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WA" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WB" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/restaurant)
+"WC" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/medical)
+"WD" = (
+/obj/effect/overlay/palmtree_r,
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"WE" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"WF" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatballsoup,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WH" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WI" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/roastbeef,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"WK" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/northright{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/computer/skills,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"WL" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatsteak,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WN" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WO" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WP" = (
+/obj/structure/table/woodentable,
+/obj/machinery/cash_register/civilian,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WQ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WR" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{
+ pixel_y = 10
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WS" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"WT" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"WU" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"WV" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WW" = (
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WZ" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xa" = (
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xb" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xc" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xd" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xe" = (
+/obj/machinery/smartfridge/drinks,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xf" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xi" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/bar)
+"Xj" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Xk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/centcom/simulated/medical)
+"Xl" = (
+/turf/unsimulated/map/edge,
+/area/overmap)
+"Xm" = (
+/obj/machinery/door/firedoor,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/centcom/simulated/medical)
+"Xn" = (
+/obj/structure/sign/greencross,
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"Xp" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Xr" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Xs" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xv" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xw" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xx" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xy" = (
+/obj/structure/table/standard,
+/obj/item/stack/nanopaste,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Xz" = (
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XC" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"XD" = (
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"XE" = (
+/turf/simulated/wall/thull,
+/area/shuttle/escape)
+"XH" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"XJ" = (
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer/improved,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XK" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data{
+ icon_keyboard = "laptop_key";
+ icon_screen = "medlaptop";
+ icon_state = "laptop";
+ light_color = "#00b000"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XM" = (
+/obj/structure/table/glass{
+ desc = "It's a table, it has some scracthes..they say 'Mlem'."
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XN" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XO" = (
+/obj/structure/signpost,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"XP" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"XQ" = (
+/obj/machinery/optable,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XR" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XS" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XU" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"XV" = (
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Security Arrivals";
+ pixel_x = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"XW" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"XX" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XY" = (
+/obj/structure/closet,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"XZ" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Ya" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yb" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yc" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yg" = (
+/obj/structure/sign/department/operational,
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"Yh" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yk" = (
+/obj/structure/medical_stand,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yl" = (
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Ym" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yo" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Ys" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Yt" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Yu" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Yv" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yw" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access = list(45)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yx" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Yy" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"YB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/item/weapon/tool/wrench,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YC" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YD" = (
+/obj/machinery/atmospherics/unary/freezer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"YF" = (
+/obj/structure/table/glass,
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YG" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"YH" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/pill_bottle/spaceacillin,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YI" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/gun/energy/taser,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"YJ" = (
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/shield/riot,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"YK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YO" = (
+/obj/machinery/computer/transhuman/designer{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YP" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YQ" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YR" = (
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/main_hall)
+"YT" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YU" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/ert,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YV" = (
+/obj/machinery/transhuman/synthprinter,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YX" = (
+/obj/effect/floor_decal/sign/small_e,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"YY" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YZ" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zb" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zc" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zd" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Ze" = (
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zf" = (
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zg" = (
+/obj/machinery/clonepod/transhuman/full,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zh" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Zi" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Zj" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zk" = (
+/obj/structure/table/reinforced,
+/obj/item/device/camera,
+/obj/item/weapon/storage/box/ids,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zl" = (
+/obj/structure/table/glass,
+/obj/item/weapon/backup_implanter{
+ pixel_y = -8
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 8
+ },
+/obj/item/weapon/backup_implanter,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zn" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zp" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zq" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zr" = (
+/obj/structure/table/standard,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zs" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zt" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Zw" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zx" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zy" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zz" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"ZC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"ZD" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"ZE" = (
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"ZQ" = (
+/obj/effect/floor_decal/sign/small_c,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+
+(1,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(2,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(3,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+Gq
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Ax
+JW
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(4,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+Gq
+Nt
+VC
+Gw
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(5,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(6,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XO
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+Ts
+BD
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(7,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+Ts
+VC
+Nj
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Uw
+Ux
+Uw
+Ux
+Ux
+Ux
+Ux
+Ux
+Ux
+Uw
+Ux
+Ux
+Uw
+ae
+ae
+ae
+ae
+ae
+Sm
+Sn
+Sm
+Sn
+Sn
+Sn
+Sn
+Sn
+Sn
+Sm
+Sn
+Sn
+Sm
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(8,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+BD
+VC
+TG
+TG
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+Uz
+Uw
+UK
+UM
+UG
+UQ
+US
+US
+Uw
+UH
+UW
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+So
+Sm
+SA
+SB
+Su
+SE
+SK
+SK
+Sm
+Sw
+SQ
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(9,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+Ts
+TG
+Fa
+Dw
+TG
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+UA
+UF
+UH
+UA
+UN
+UA
+UA
+UH
+UF
+UH
+UX
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+Sp
+Ss
+Sw
+Sp
+SC
+Sp
+Sp
+Sw
+Ss
+Sw
+SR
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(10,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+TG
+Tn
+Ik
+TG
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+UC
+Uw
+UI
+UA
+UA
+UA
+UA
+UU
+Uw
+UH
+UY
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+Sq
+Sm
+Sx
+Sp
+Sp
+Sp
+Sp
+SO
+Sm
+Sw
+SS
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(11,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+TG
+TG
+VC
+VC
+VC
+FH
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+UD
+Ux
+UJ
+UH
+UP
+UR
+UT
+UV
+Ux
+UH
+UZ
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+Sr
+Sn
+Sz
+Sw
+SD
+SF
+SN
+SP
+Sn
+Sw
+ST
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(12,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Oj
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Uw
+Ux
+Uw
+Ux
+Ux
+Ux
+Ux
+Ux
+Ux
+Uw
+Ux
+Ux
+Uw
+ae
+ae
+ae
+ae
+ae
+Sm
+Sn
+Sm
+Sn
+Sn
+Sn
+Sn
+Sn
+Sn
+Sm
+Sn
+Sn
+Sm
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(13,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Oj
+Cn
+Cn
+Cn
+Kj
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+TF
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(14,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Oj
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+BD
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(15,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+ya
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+TF
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(16,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+ya
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+VC
+No
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(17,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+Ts
+Gw
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+aa
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(18,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(19,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TK
+TM
+TK
+TM
+TM
+TM
+TM
+TM
+TM
+TK
+TM
+TM
+TK
+ae
+ae
+ae
+ae
+ae
+cr
+cC
+cr
+cC
+cC
+cC
+cC
+cC
+cC
+cr
+cC
+cC
+cr
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(20,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+Gw
+Ts
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TN
+TK
+TX
+Ua
+TT
+Ud
+Ug
+Ug
+TK
+TU
+Uk
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cF
+cr
+cV
+dn
+dp
+ea
+ev
+ev
+cr
+cW
+eF
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(21,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TP
+TS
+TU
+TP
+Ub
+TP
+TP
+TU
+TS
+TU
+Ul
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cG
+cN
+cW
+cG
+dy
+cG
+cG
+cW
+cN
+cW
+eG
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(22,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+WD
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TQ
+TK
+TV
+TP
+TP
+TP
+TP
+Ui
+TK
+TU
+Um
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cH
+cr
+cX
+cG
+cG
+cG
+cG
+ez
+cr
+cW
+eH
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(23,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Ax
+JW
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TR
+TM
+TW
+TU
+Uc
+Uf
+Uh
+Uj
+TM
+TU
+Uo
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cI
+cC
+cY
+cW
+dz
+eb
+ew
+eA
+cC
+cW
+eI
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(24,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+ae
+ae
+ae
+ae
+ae
+TK
+TM
+TK
+TM
+TM
+TM
+TM
+TM
+TM
+TK
+TM
+TM
+TK
+ae
+ae
+ae
+ae
+ae
+cr
+cC
+cr
+cC
+cC
+cC
+cC
+cC
+cC
+cr
+cC
+cC
+cr
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(25,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(26,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(27,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(28,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(29,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(30,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(31,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+bT
+ck
+bT
+ck
+ck
+ck
+ck
+ck
+ck
+bT
+ck
+ck
+bT
+ae
+ae
+ae
+ae
+ae
+cD
+cE
+cD
+cE
+cE
+cE
+cE
+cE
+cE
+cD
+cE
+cE
+cD
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(32,1,1) = {"
+Hy
+Hy
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+SZ
+bT
+Tp
+Tq
+Tk
+co
+Ty
+Ty
+bT
+Tl
+TC
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cJ
+cD
+cZ
+do
+dC
+er
+ex
+ex
+cD
+db
+eN
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(33,1,1) = {"
+Hy
+Hy
+Mb
+Mb
+zv
+Mb
+Mb
+sN
+IN
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+sp
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+Mb
+Mb
+Mb
+zv
+Mb
+Mb
+sN
+Mb
+mb
+sN
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+Ta
+cl
+Tl
+Ta
+Tr
+Ta
+Ta
+Tl
+cl
+Tl
+TD
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cK
+cR
+db
+cK
+dL
+cK
+cK
+db
+cR
+db
+eO
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(34,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+mF
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+Tb
+bT
+Tm
+Ta
+Ta
+Ta
+Ta
+TA
+bT
+Tl
+TE
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cL
+cD
+dc
+cK
+cK
+cK
+cK
+eB
+cD
+db
+eP
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(35,1,1) = {"
+Hy
+Hy
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+jL
+Pq
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+Tc
+ck
+To
+Tl
+cn
+Tx
+Tz
+cp
+ck
+Tl
+TH
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cM
+cE
+df
+db
+dT
+eu
+ey
+eC
+cE
+db
+eQ
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(36,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+bT
+ck
+bT
+ck
+ck
+ck
+ck
+ck
+ck
+bT
+ck
+ck
+bT
+ae
+ae
+ae
+ae
+ae
+cD
+cE
+cD
+cE
+cE
+cE
+cE
+cE
+cE
+cD
+cE
+cE
+cD
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(37,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(38,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(39,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(40,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(41,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(42,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(43,1,1) = {"
+Hy
+Hy
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+jL
+Pq
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(44,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(45,1,1) = {"
+Hy
+Hy
+PU
+PU
+Ft
+PU
+PU
+FX
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+tu
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+PU
+PU
+PU
+Ft
+PU
+PU
+FX
+PU
+in
+FX
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(46,1,1) = {"
+Hy
+Hy
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(47,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(48,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(49,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(50,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(51,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(52,1,1) = {"
+ar
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ar
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(53,1,1) = {"
+as
+nW
+pf
+Hk
+qV
+kw
+eD
+wa
+Di
+HL
+nW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(54,1,1) = {"
+as
+nW
+nV
+ru
+CK
+pT
+CK
+pT
+cm
+JI
+vW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+"}
+(55,1,1) = {"
+as
+nW
+wh
+oT
+pT
+CK
+pT
+CK
+CJ
+sb
+DL
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(56,1,1) = {"
+as
+nW
+EX
+ru
+CK
+pT
+CK
+pT
+cm
+Jc
+ZQ
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(57,1,1) = {"
+as
+nW
+Qs
+oT
+pT
+CK
+pT
+CK
+CJ
+Wf
+Kn
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(58,1,1) = {"
+as
+nW
+BG
+ru
+CK
+pT
+CK
+pT
+cm
+GW
+YX
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+sF
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(59,1,1) = {"
+as
+nW
+Bm
+oT
+pT
+CK
+pT
+CK
+CJ
+Mi
+KQ
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(60,1,1) = {"
+as
+nW
+uM
+ru
+CK
+pT
+CK
+pT
+cm
+Or
+Eo
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(61,1,1) = {"
+as
+nW
+Hr
+oT
+pT
+CK
+pT
+CK
+CJ
+nj
+qv
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(62,1,1) = {"
+as
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(63,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(64,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aK
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(65,1,1) = {"
+as
+aJ
+aJ
+bd
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(66,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+bN
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(67,1,1) = {"
+as
+aK
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(68,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+bd
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+fg
+fg
+fg
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(69,1,1) = {"
+as
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(70,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(71,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(72,1,1) = {"
+as
+aJ
+bd
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(73,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(74,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+Hf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(75,1,1) = {"
+as
+aM
+be
+bf
+be
+be
+be
+be
+bf
+be
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fG
+dG
+dG
+fZ
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(76,1,1) = {"
+as
+aN
+bf
+be
+bf
+bf
+bf
+bf
+be
+bf
+aN
+dA
+dG
+ed
+dG
+dG
+dG
+dG
+dG
+dG
+eT
+dG
+fZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(77,1,1) = {"
+as
+aM
+be
+bo
+bU
+bU
+bU
+bU
+da
+be
+aM
+dA
+dG
+dG
+dG
+eJ
+dG
+dG
+dG
+dG
+dG
+dG
+fZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(78,1,1) = {"
+as
+aN
+bf
+bp
+bB
+bB
+bB
+bB
+cP
+bf
+aN
+dA
+dG
+dG
+dG
+dG
+eT
+dG
+dG
+dG
+eJ
+dG
+fZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(79,1,1) = {"
+as
+aM
+be
+bq
+an
+bS
+bS
+an
+cQ
+be
+aM
+dA
+dG
+dG
+dG
+ep
+dG
+dG
+ed
+dG
+dG
+fG
+fZ
+ae
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Jq
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+xi
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+xi
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+aj
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(80,1,1) = {"
+as
+aM
+bf
+bp
+an
+bS
+bS
+an
+cP
+bf
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fG
+dG
+dG
+fZ
+ae
+Vu
+Ru
+wn
+Cy
+eS
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+sx
+sx
+zH
+sx
+sx
+sx
+zH
+sx
+sx
+sx
+sx
+zH
+sx
+zH
+sx
+sx
+sx
+sx
+zH
+sx
+sx
+sx
+zH
+sx
+sx
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(81,1,1) = {"
+as
+aN
+be
+ag
+bB
+bB
+bB
+bB
+at
+be
+aN
+dA
+dG
+ed
+dG
+dG
+dG
+dG
+eJ
+dG
+eT
+dG
+fZ
+ae
+Vu
+Vu
+Vu
+Cy
+gU
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+ET
+ET
+ET
+XE
+XE
+dD
+XE
+Sl
+Bs
+Cp
+li
+Bs
+Sl
+XE
+dD
+XE
+XE
+ET
+ET
+ET
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(82,1,1) = {"
+as
+aM
+bf
+bB
+bB
+ao
+aA
+bB
+bB
+bf
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fZ
+ae
+Vu
+Vu
+Vu
+Cy
+eS
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+Fp
+Fp
+Fp
+XE
+XE
+XE
+XE
+gE
+yU
+LD
+ix
+yU
+Mq
+ix
+ih
+Mq
+NA
+XE
+XE
+XE
+XE
+Fp
+Fp
+Fp
+Fp
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(83,1,1) = {"
+as
+aN
+be
+bB
+ao
+ax
+aB
+aA
+bB
+bf
+aN
+dA
+dG
+dG
+ep
+dG
+eT
+dG
+dG
+dG
+eJ
+dG
+fZ
+ae
+Vu
+kn
+Ru
+Cy
+eS
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+XE
+Sl
+Al
+HX
+cq
+Re
+Jw
+XW
+FY
+XW
+XW
+FY
+XW
+FJ
+Ic
+Al
+SG
+HW
+XE
+XE
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(84,1,1) = {"
+as
+aM
+bf
+bB
+at
+bU
+bU
+ag
+bB
+be
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+ed
+dG
+dG
+fG
+fZ
+ae
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+XE
+XE
+XE
+ti
+Ri
+Ri
+Rg
+Rs
+iU
+RA
+iU
+iU
+RA
+iU
+RG
+qY
+Ri
+Ri
+RY
+Sl
+XE
+XE
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+jQ
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(85,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+Pe
+Pg
+Rd
+Rg
+Rk
+Rk
+Rm
+Tv
+RD
+RA
+RD
+RD
+RA
+RD
+tS
+Rm
+ii
+ii
+qY
+lE
+Pg
+vu
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(86,1,1) = {"
+as
+aO
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+dq
+dA
+dI
+dH
+dH
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+Pe
+Qa
+Re
+Rm
+vz
+vz
+Rm
+DI
+RA
+RA
+RA
+RA
+RA
+RA
+RF
+Rm
+vz
+vz
+Rm
+Ic
+xl
+vu
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(87,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+bV
+dA
+dH
+dH
+dH
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+Pe
+RD
+jr
+lf
+Rk
+Rk
+Rm
+CG
+Pg
+RA
+Pg
+Pg
+RA
+Pg
+tp
+Rm
+ii
+ii
+AD
+Cd
+RD
+vu
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(88,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bW
+ct
+ct
+ct
+dj
+bV
+dA
+dH
+dH
+dH
+eK
+eV
+fn
+fn
+fn
+fO
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+XE
+XE
+XE
+Et
+rh
+rh
+lf
+Rs
+iU
+RA
+iU
+iU
+RA
+iU
+RG
+AD
+rh
+rh
+Sy
+Sl
+XE
+XE
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(89,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ee
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+XE
+Sl
+Al
+nC
+cq
+Re
+qc
+nB
+pk
+nB
+nB
+pk
+nB
+Dn
+Ic
+Al
+NW
+HW
+XE
+XE
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(90,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+Fp
+Fp
+Fp
+XE
+XE
+XE
+XE
+Ro
+Rz
+uG
+RC
+Rz
+Dm
+RC
+RE
+Dm
+sT
+XE
+XE
+XE
+XE
+Fp
+Fp
+Fp
+Fp
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(91,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+ET
+ET
+ET
+XE
+XE
+zw
+XE
+Sl
+zw
+Fe
+Fe
+zw
+Sl
+XE
+pv
+XE
+XE
+ET
+ET
+ET
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(92,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+pX
+Rc
+Rc
+Rc
+pX
+Rc
+Rc
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(93,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bY
+cv
+cv
+cv
+dl
+bV
+dA
+dH
+eg
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+Vg
+Vg
+Vl
+Vh
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Zt
+aj
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+aj
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(94,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+bV
+dA
+dH
+dH
+dH
+eK
+eX
+fp
+fp
+fH
+fQ
+eK
+fZ
+Vu
+Ru
+Ru
+xM
+Ru
+Ru
+Ru
+Ru
+xM
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+Nr
+Th
+JR
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+Yx
+Nq
+Nq
+Nq
+Nq
+Yx
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+dZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(95,1,1) = {"
+as
+aP
+bg
+bg
+bH
+bZ
+bZ
+bZ
+bZ
+dm
+dr
+dA
+dH
+dH
+dH
+eK
+eU
+eU
+eK
+eK
+eK
+eK
+fZ
+Vu
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+SW
+Ti
+Rq
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+wd
+dZ
+TY
+Vv
+dZ
+dZ
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+dZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(96,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+Vu
+YE
+Ru
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Ru
+Zi
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+Tf
+Tj
+Rv
+QY
+Pf
+XH
+SH
+SH
+QY
+TI
+Rr
+SV
+SV
+Rr
+TI
+QY
+SH
+SH
+XH
+Pf
+QY
+dZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(97,1,1) = {"
+as
+aS
+bi
+ah
+au
+ay
+ay
+ay
+ay
+aE
+aS
+dB
+dM
+eh
+eh
+eh
+eY
+fq
+fz
+fz
+fz
+fS
+fZ
+Vu
+Ru
+Ru
+Vu
+VW
+wj
+wj
+wj
+BK
+Vu
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+wy
+Vg
+Vg
+Vg
+Vg
+TI
+TI
+TI
+TI
+TI
+TI
+dZ
+Ru
+Ru
+Ru
+Ru
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(98,1,1) = {"
+as
+aS
+bi
+bv
+av
+az
+az
+az
+az
+aF
+aS
+dB
+dN
+ei
+ei
+ei
+eZ
+fr
+ei
+ei
+ei
+fJ
+fZ
+Vu
+Ru
+Ru
+Vu
+sl
+cj
+Dk
+Dk
+Dk
+yK
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+yA
+Ga
+xe
+wl
+TZ
+Vi
+Vi
+Vi
+VJ
+Vi
+VS
+Vu
+YE
+Ru
+Ru
+Wt
+WE
+Xs
+XC
+Zp
+VI
+Yr
+Zw
+YI
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(99,1,1) = {"
+as
+aS
+bi
+ak
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+dB
+dM
+eh
+dN
+ei
+eZ
+fr
+ei
+fJ
+fz
+fS
+fZ
+Vu
+Ru
+Ru
+Vu
+sl
+Lg
+tC
+tC
+tC
+ym
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+rE
+Ga
+Iq
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+Wv
+WJ
+Xv
+XD
+XD
+VI
+Ys
+XD
+YJ
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(100,1,1) = {"
+as
+aS
+bi
+bi
+bI
+ca
+cw
+cS
+dd
+cS
+ds
+dB
+dO
+ei
+dN
+ei
+fa
+fr
+ei
+fJ
+ei
+fT
+fZ
+Vu
+Ru
+Ru
+Vu
+DF
+JZ
+JZ
+JZ
+qz
+Vu
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+HQ
+Ga
+eE
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+Wv
+WK
+Xw
+XD
+XD
+VI
+Yu
+XD
+YJ
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+ce
+ap
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+"}
+(101,1,1) = {"
+as
+aS
+bi
+aS
+bJ
+cb
+cx
+cT
+cy
+cT
+dt
+dB
+dP
+ej
+dN
+ei
+eZ
+fr
+ei
+fJ
+fA
+fU
+fZ
+Vu
+YE
+Ru
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Ru
+Zi
+Vu
+ae
+ae
+ae
+wy
+pb
+Ga
+ME
+wl
+Uu
+Vj
+Vj
+Vm
+Vj
+Vj
+XU
+Vu
+Ru
+Ru
+Ru
+Wt
+WE
+Xx
+Zk
+XV
+Yl
+Zs
+Yy
+XD
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ch
+cg
+cf
+cf
+cf
+ce
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(102,1,1) = {"
+as
+aS
+bi
+bt
+bK
+cb
+cy
+cy
+cy
+cT
+dt
+dB
+dN
+ei
+ei
+ei
+eZ
+fr
+ei
+ei
+ei
+fJ
+fZ
+Vu
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+kr
+Ga
+Cw
+wl
+Up
+Vj
+Vj
+Vm
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Zi
+VI
+VI
+VI
+VI
+VI
+VI
+VI
+VI
+Yl
+VI
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+ce
+ap
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+"}
+(103,1,1) = {"
+as
+aS
+bi
+aS
+bL
+cb
+cx
+cT
+cy
+cT
+dt
+dB
+dP
+ej
+ej
+ej
+fb
+fs
+fA
+fA
+fA
+fU
+fZ
+Vu
+Ru
+Ru
+MK
+Ru
+Ru
+Ru
+Ru
+MK
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+nn
+Ga
+eR
+wl
+Ur
+Vm
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+VM
+VQ
+WN
+VZ
+VQ
+VQ
+WH
+ZD
+WW
+Xe
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(104,1,1) = {"
+as
+aS
+bi
+bi
+bM
+cc
+cz
+cU
+de
+cU
+du
+dB
+aG
+aG
+aR
+aG
+aG
+aG
+aG
+bh
+aG
+aG
+fZ
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+wy
+wy
+Ct
+wy
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+TJ
+Ru
+Ru
+Ru
+WB
+VR
+Wb
+Wl
+Wz
+VQ
+WH
+WO
+WW
+Xf
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(105,1,1) = {"
+as
+ab
+ad
+al
+al
+al
+al
+al
+aC
+al
+ab
+dB
+dK
+dK
+dJ
+dK
+dK
+dK
+dK
+dJ
+dK
+dK
+fZ
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+ae
+ae
+ae
+ae
+wy
+wy
+wy
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vw
+Ru
+Ru
+Ru
+VK
+VR
+Wc
+Wm
+Wz
+VQ
+WH
+WP
+WW
+Xg
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(106,1,1) = {"
+as
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+dB
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+fZ
+aq
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+YE
+Ru
+Ru
+VL
+VQ
+Wd
+Wd
+VQ
+VQ
+WH
+WQ
+WW
+Xh
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(107,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aq
+uc
+ue
+ue
+uf
+ue
+ue
+ue
+uf
+ue
+ue
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vj
+Vm
+Vj
+VN
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+WB
+VQ
+VQ
+VQ
+VQ
+VQ
+WH
+WR
+WW
+Zh
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(108,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+uc
+uf
+uf
+uf
+uf
+ug
+uf
+uf
+uf
+uf
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Uu
+Vj
+Vj
+Vj
+Vj
+Vj
+Yt
+Vu
+Ru
+Ru
+Ru
+WB
+VQ
+VZ
+VZ
+VQ
+VQ
+WH
+WV
+WW
+WW
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(109,1,1) = {"
+as
+aT
+bj
+aT
+aT
+aT
+aT
+aT
+aT
+bj
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+uc
+ue
+ue
+uf
+ue
+ue
+ue
+uf
+ue
+ue
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vj
+Vj
+Vj
+Vm
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+WB
+VR
+We
+Wo
+Wz
+VQ
+VQ
+VQ
+ZE
+VM
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(110,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+ek
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+ud
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+ud
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Us
+Vn
+Vj
+Vj
+Vm
+VO
+VP
+Vu
+Ru
+Ru
+Zi
+WB
+VR
+Wk
+Wu
+Wz
+VQ
+VQ
+VQ
+WZ
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(111,1,1) = {"
+as
+aT
+aT
+aT
+bj
+aT
+aT
+bj
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bc
+bc
+bQ
+cs
+bc
+cs
+dh
+bc
+bc
+bc
+aq
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Ut
+Us
+Vs
+VB
+Vs
+VP
+Ut
+Vu
+Ru
+Ru
+Ru
+VK
+VQ
+Wd
+Wd
+VQ
+VZ
+VZ
+VQ
+Xa
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(112,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+eM
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+by
+bR
+bn
+cO
+bn
+di
+by
+bc
+bc
+af
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+wl
+Vo
+Vo
+Vo
+Vo
+Vo
+wl
+Vu
+Ru
+Ru
+Ru
+VL
+VQ
+VQ
+VQ
+VR
+WA
+WI
+Wz
+Xb
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(113,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bn
+bR
+bn
+bn
+bn
+di
+bn
+bn
+dE
+ai
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+TZ
+Vi
+Vi
+Vi
+Vi
+Vi
+VX
+Vu
+Ru
+Ru
+Ru
+WB
+VQ
+VQ
+VQ
+VR
+WF
+WL
+Wz
+Xc
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(114,1,1) = {"
+as
+aT
+aT
+aT
+bj
+aT
+aT
+bj
+aT
+aT
+aT
+dB
+dQ
+dQ
+es
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bn
+bR
+bn
+bn
+bn
+di
+bn
+bn
+dE
+bO
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Va
+Vp
+Ut
+Ut
+Ut
+Ut
+VU
+Vu
+YE
+Ru
+Ru
+VM
+VY
+ZC
+VQ
+VQ
+Wd
+Wd
+ZC
+Xd
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(115,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+et
+dQ
+fc
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+dE
+ai
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vq
+Ut
+Vr
+Vr
+Ut
+VU
+Vu
+Ru
+Ru
+Ru
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(116,1,1) = {"
+as
+aT
+bj
+aT
+aT
+aT
+aT
+aT
+aT
+bj
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bz
+bn
+bn
+bn
+bn
+bn
+bz
+bc
+bc
+bP
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Uu
+Ut
+Vt
+Ut
+Ut
+Ut
+XU
+Vu
+Ru
+Ru
+Ru
+Vd
+WS
+WS
+Zl
+XX
+Ym
+Vd
+YB
+YK
+YP
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(117,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+ap
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+VD
+VU
+Vu
+Ru
+Ru
+Ru
+WC
+WT
+WS
+XJ
+XZ
+WS
+Vd
+YC
+YL
+YP
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(118,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Vr
+Ut
+Ut
+Ut
+Wh
+Vu
+Ru
+Ru
+Zi
+Ve
+WS
+WS
+XK
+Ya
+WS
+Vd
+YD
+YM
+XN
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(119,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dU
+el
+el
+el
+fd
+ft
+fB
+fB
+fB
+fV
+fZ
+aI
+aI
+aI
+ar
+aI
+aI
+aI
+ar
+aI
+aI
+aI
+ar
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+Ut
+VU
+TJ
+Ru
+Ru
+Ru
+Xk
+WS
+WS
+XM
+XZ
+WS
+Vd
+YC
+YN
+YQ
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(120,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+ga
+ga
+ga
+dB
+gN
+gO
+gO
+dB
+hx
+hx
+hx
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vr
+Ut
+Ut
+Ut
+Ut
+VU
+Vw
+Ru
+Ru
+Ru
+Xm
+WS
+WS
+XN
+Yb
+Zq
+Vd
+Zx
+XZ
+YT
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(121,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gb
+ga
+gq
+dB
+gO
+gO
+gP
+dB
+hy
+hJ
+hO
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+VD
+Ut
+Vr
+VV
+Vu
+Ru
+Ru
+Ru
+Xn
+WS
+WS
+WS
+WS
+WS
+Vd
+XN
+WS
+YU
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+ML
+ML
+ML
+ML
+ML
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(122,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gc
+ga
+gc
+dB
+gO
+gO
+gO
+dB
+hz
+hK
+hP
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+Ut
+VU
+Vu
+YE
+Ru
+Ru
+WC
+WT
+WS
+WS
+WS
+WS
+Vd
+Vd
+Yw
+Vd
+Vd
+Vd
+Vd
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(123,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gd
+ga
+ga
+dB
+gO
+gN
+gO
+dB
+hz
+hK
+hP
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Uu
+Ut
+Vr
+Ut
+Ut
+Ut
+XU
+Vu
+Ru
+Ru
+Ru
+WC
+WT
+WS
+WS
+WS
+WS
+Vd
+Ym
+WS
+WS
+WS
+WS
+Zf
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(124,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gc
+ga
+gq
+dB
+gO
+gO
+gO
+dB
+hA
+hL
+hQ
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+VD
+VU
+Vu
+Ru
+Ru
+Ru
+WC
+WT
+WS
+WS
+WS
+WS
+Yv
+WS
+WS
+WS
+YY
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(125,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dW
+en
+en
+en
+ff
+fv
+fC
+fC
+fC
+fX
+dB
+gc
+ga
+gc
+dB
+gP
+gO
+gO
+dB
+hx
+hx
+hx
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Us
+Vn
+Ut
+VE
+Ut
+VO
+VP
+Vu
+Ru
+Ru
+Ru
+Vd
+WS
+WS
+Zn
+WS
+WS
+WS
+WS
+WS
+WS
+YZ
+WS
+Zq
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(126,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+aH
+aH
+aX
+aH
+aH
+aH
+aH
+br
+aH
+aH
+fZ
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Ut
+Us
+Vs
+VF
+Vs
+VP
+Ut
+Vu
+Ru
+Ru
+Zi
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+YF
+WS
+WS
+WS
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(127,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dS
+dS
+dR
+dS
+dS
+dS
+dS
+dR
+dS
+dS
+dB
+ge
+gl
+gr
+dB
+gQ
+gR
+gQ
+dB
+hB
+hD
+hD
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+wl
+Vo
+Vo
+Vo
+Vo
+Vo
+wl
+Vu
+Ru
+Ru
+Ru
+Vd
+WU
+Xy
+XP
+Yc
+Yc
+Vd
+Zy
+WS
+WS
+WS
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(128,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dB
+gf
+gl
+gr
+dB
+gR
+gQ
+gR
+dB
+hC
+hC
+hC
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Uv
+Ru
+Ru
+Ru
+Vd
+Xj
+Xz
+XQ
+Yh
+Yc
+Vd
+YH
+WS
+WS
+Zb
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(129,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+as
+gg
+gl
+gr
+dB
+gQ
+hg
+gQ
+dB
+hD
+hD
+hD
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vc
+Vz
+Vc
+Vc
+Vz
+Vc
+Wi
+YR
+Ru
+Ru
+Ru
+Vd
+Zj
+XA
+XR
+Yj
+Zr
+Yg
+WS
+WS
+WS
+Zc
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+In
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(130,1,1) = {"
+as
+aY
+bk
+bk
+bk
+bk
+cA
+cA
+cA
+cA
+dv
+dB
+dX
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dB
+gh
+gl
+gr
+dB
+gR
+gQ
+gR
+dB
+hD
+hD
+hD
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vc
+Vc
+Vc
+Vc
+Vc
+Vc
+Vk
+UE
+Ru
+Ru
+Ru
+Vd
+Xr
+XB
+YW
+YW
+YW
+Yw
+WS
+WS
+WS
+WS
+WS
+Zq
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(131,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dX
+dY
+dY
+eo
+eo
+eo
+eo
+dY
+dY
+dY
+dB
+gi
+gl
+gr
+dB
+gQ
+gR
+gQ
+dB
+hE
+hE
+hE
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vf
+Vk
+Vy
+Vk
+Vy
+Vg
+Vg
+Vg
+Wq
+Ws
+Ws
+Vg
+Vg
+Vg
+WS
+WS
+WS
+Vd
+WS
+WS
+WS
+WS
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(132,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dB
+gf
+gl
+gr
+dB
+gR
+gQ
+gR
+dB
+hD
+hD
+hR
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vb
+Vk
+Xp
+Vk
+Xp
+Vg
+Wj
+Wp
+Ti
+YG
+Ti
+Wp
+Wj
+Vg
+XS
+Yk
+Yo
+Vd
+Zz
+YO
+YV
+Zd
+Ze
+Zg
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(133,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+dY
+dY
+bu
+bA
+bA
+bD
+dY
+eo
+dY
+fZ
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Vg
+Vg
+Vg
+Wp
+Vg
+Wp
+Vg
+Vg
+Vg
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+zb
+qn
+pF
+qn
+tD
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(134,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+eo
+dY
+bw
+bs
+bs
+bE
+dY
+eo
+dY
+dB
+gj
+gk
+gs
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Vg
+Wj
+Vg
+Wj
+Vg
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+zb
+zb
+tD
+tD
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(135,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+eo
+dY
+bw
+bs
+bs
+bE
+dY
+eo
+dY
+dB
+gk
+gm
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Vg
+Vg
+Vg
+Vg
+Vg
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(136,1,1) = {"
+as
+ba
+bm
+bm
+bm
+bm
+cB
+cB
+cB
+cB
+dx
+dB
+dY
+eo
+dY
+bx
+bC
+bC
+bF
+dY
+dY
+dY
+dB
+gk
+gn
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(137,1,1) = {"
+as
+ac
+ac
+am
+ac
+ac
+ac
+ac
+aD
+ac
+ac
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dB
+gk
+go
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(138,1,1) = {"
+as
+aW
+aW
+aV
+aW
+aW
+aW
+aW
+aV
+aW
+aW
+dB
+dY
+dY
+dY
+eo
+eo
+eo
+eo
+dY
+dY
+fY
+dB
+gk
+gk
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(139,1,1) = {"
+as
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+fY
+dB
+gk
+gk
+gt
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(140,1,1) = {"
+ar
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+ar
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+ap
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+"}
diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm
index 990928201c..aa78ff5bff 100644
--- a/maps/tether/tether-01-surface1.dmm
+++ b/maps/tether/tether-01-surface1.dmm
@@ -26588,7 +26588,7 @@
/obj/item/clothing/shoes/rainbow,
/obj/item/clothing/under/color/rainbow,
/obj/item/clothing/gloves/rainbow,
-/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow,
+/obj/item/clothing/suit/storage/teshari/cloak/standard/rainbow,
/turf/simulated/floor/plating,
/area/engineering/atmos)
"aTx" = (
diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm
index 673c59a11c..d30ec6a4ac 100644
--- a/maps/tether/tether-03-surface3.dmm
+++ b/maps/tether/tether-03-surface3.dmm
@@ -27194,10 +27194,10 @@
},
/area/hallway/lower/third_south)
"aUq" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/tether)
+/obj/effect/floor_decal/rust/part_rusted1,
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aUr" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -27246,12 +27246,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
"aUx" = (
-/obj/machinery/atmospherics/unary/engine{
- dir = 1
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/tourbus/engines)
+/obj/structure/bed/chair/bay/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aUy" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_command{
@@ -27322,6 +27326,15 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
+"aUE" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 8
+ },
+/obj/structure/closet/emergsuit_wall{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aUF" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
@@ -27396,6 +27409,22 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
+"aUN" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris/white/orangecorner,
+/area/shuttle/tourbus/cockpit)
"aUO" = (
/obj/effect/floor_decal/techfloor{
dir = 6
@@ -27420,6 +27449,13 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
+"aUQ" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/tourbus/general)
"aUR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27687,6 +27723,15 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
+"aVm" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aVn" = (
/obj/structure/bed/chair{
dir = 1
@@ -27907,6 +27952,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"aVF" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "tourbus_docker";
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/bed/chair/bay/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aVG" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -27945,6 +28005,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/upperhall)
+"aVJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/shull,
+/area/shuttle/tourbus/general)
"aVK" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -27967,6 +28031,18 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
+"aVM" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ req_one_access = list(19,43,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/bluecorner,
+/area/shuttle/tourbus/general)
"aVN" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -28096,6 +28172,22 @@
},
/turf/simulated/wall,
/area/tether/surfacebase/security/upperhall)
+"aWc" = (
+/obj/machinery/light/small,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/machinery/door/window/southright{
+ dir = 1;
+ req_one_access = list(19,43,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/bluecorner,
+/area/shuttle/tourbus/general)
"aWd" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
@@ -28477,6 +28569,39 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/storage)
+"aWK" = (
+/obj/machinery/power/smes/buildable{
+ charge = 500000
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/bluecorner,
+/area/shuttle/tourbus/general)
+"aWL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/bed/chair/bay/chair{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aWM" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/grass,
@@ -28508,6 +28633,20 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"aWP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "tourbus_windows";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/shuttle/tourbus/general)
"aWQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -28581,6 +28720,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
+"aWX" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/tourbus/general)
"aWY" = (
/obj/structure/bed/chair{
dir = 1
@@ -28600,6 +28747,17 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
+"aXa" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(19,43,67)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/shuttle/tourbus/general)
"aXb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -29062,6 +29220,11 @@
/obj/item/weapon/implantcase/chem,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
+"aXI" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/tether)
"aXJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29109,6 +29272,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"aXN" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/tourbus/general)
"aXP" = (
/obj/structure/disposalpipe/up{
dir = 8
@@ -37953,31 +38123,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/hos)
-"dGZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
-"dJm" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(19,43,67)
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris/techmaint_panels,
-/area/shuttle/tourbus/cockpit)
"dKj" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner{
@@ -38349,26 +38494,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"fru" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 8;
- frequency = 1380;
- id_tag = "tourbus_docker";
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/structure/bed/chair/bay/chair{
- dir = 8
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable,
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"fxh" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -38461,24 +38586,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"fYr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/bed/chair/bay/chair{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/engines)
"gae" = (
/obj/structure/bed/chair{
dir = 4
@@ -38850,20 +38957,6 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"hCB" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/bed/chair/bay/chair{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"hEt" = (
/obj/structure/bed/chair{
dir = 8
@@ -39017,20 +39110,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"iqb" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/closet/emergsuit_wall{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"isl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -39699,18 +39778,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"kBF" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/portable_atmospherics/canister/phoron,
-/obj/machinery/door/window/southleft{
- dir = 1;
- req_one_access = list(19,43,67)
- },
-/turf/simulated/floor/tiled/eris/dark/bluecorner,
-/area/shuttle/tourbus/engines)
"kCW" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/floor_decal/spline/plain{
@@ -39996,21 +40063,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"lCq" = (
-/obj/structure/handrail{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/tourbus/cockpit)
-"lFc" = (
-/obj/effect/floor_decal/rust/part_rusted1,
-/obj/machinery/atmospherics/binary/pump,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"lFG" = (
/obj/structure/table/woodentable,
/obj/item/device/flashlight/lamp/green{
@@ -40728,20 +40780,6 @@
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/iaa/officeb)
-"oLR" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 1
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/eris/white/orangecorner,
-/area/shuttle/tourbus/cockpit)
"oMh" = (
/obj/machinery/power/apc{
dir = 8;
@@ -41175,20 +41213,6 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/security/hos)
-"qom" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "tourbus_windows";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/engines)
"qoL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -41223,9 +41247,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"qwm" = (
-/turf/simulated/wall/shull,
-/area/shuttle/tourbus/engines)
"qze" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
@@ -41341,10 +41362,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/tether/surfacebase/security/hos)
-"qWU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/turf/simulated/wall/shull,
-/area/shuttle/tourbus/engines)
"qXD" = (
/obj/structure/bed/chair/comfy/black,
/obj/machinery/button/windowtint{
@@ -41739,22 +41756,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"sGV" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 9
- },
-/obj/machinery/door/window/southright{
- dir = 1;
- req_one_access = list(19,43,67)
- },
-/turf/simulated/floor/tiled/eris/dark/bluecorner,
-/area/shuttle/tourbus/engines)
"sJv" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -42050,19 +42051,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/iaa/officeb)
-"tLv" = (
-/obj/machinery/power/smes/buildable{
- charge = 500000
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/dark/bluecorner,
-/area/shuttle/tourbus/engines)
"tPE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/book/manual/security_space_law,
@@ -43252,14 +43240,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"xXf" = (
-/obj/machinery/shipsensors{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/tourbus/cockpit)
"xXZ" = (
/obj/structure/railing,
/turf/simulated/open,
@@ -54366,17 +54346,17 @@ aJn
aKa
aKU
aKU
-lCq
-jvK
-jvK
-jvK
+aUQ
+jHw
+jHw
+jHw
bkN
jHw
jML
jHw
jpB
-qWU
-aUx
+aVJ
+aXN
aKU
aOI
aPb
@@ -54511,14 +54491,14 @@ aKU
jvK
jvK
kdx
-jvK
+jHw
cnN
mDf
eiO
cnZ
-fYr
-qwm
-qwm
+aWL
+jHw
+jHw
aKU
aOI
aPb
@@ -54652,15 +54632,15 @@ aKU
aKU
ddn
eCG
-oLR
-jvK
+aUN
+jHw
oPm
kmK
xOa
dVW
kun
-kBF
-qom
+aVM
+aWP
aKU
avs
aKj
@@ -54795,14 +54775,14 @@ aKU
ddn
pNk
vrU
-dJm
+aXa
kiw
kcC
eGv
-lFc
-dGZ
-sGV
-qom
+aUq
+aVm
+aWc
+aWP
aKU
aOI
aPb
@@ -54937,14 +54917,14 @@ aKU
ddn
pwF
hlF
-jvK
+jHw
uhm
gUL
rbR
-hCB
+aUx
wQf
-tLv
-qom
+aWK
+aWP
aKU
aOI
aPb
@@ -55079,14 +55059,14 @@ aKU
jvK
jvK
ivq
-jvK
+jHw
rzV
fcg
tcW
-iqb
-fru
-qwm
-qwm
+aUE
+aVF
+jHw
+jHw
aKU
aOK
aKj
@@ -55218,17 +55198,17 @@ aJn
aKa
aKU
aKU
-xXf
-jvK
-jvK
-jvK
+aWX
+jHw
+jHw
+jHw
wyi
jHw
caw
jHw
gHh
-qWU
-aUx
+aVJ
+aXN
aKU
aOI
aKj
@@ -57213,7 +57193,7 @@ aNk
uSA
aNJ
aNP
-aUq
+aXI
aKU
abg
aOk
@@ -57355,7 +57335,7 @@ aNl
aNl
aNK
aNP
-aUq
+aXI
aKU
abg
aOk
@@ -57497,7 +57477,7 @@ aNm
aNl
aNK
aNP
-aUq
+aXI
aKU
abg
aOk
diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm
index 20edb75efd..8d0015ec8f 100644
--- a/maps/tether/tether-06-station2.dmm
+++ b/maps/tether/tether-06-station2.dmm
@@ -18154,7 +18154,7 @@
/obj/item/clothing/shoes/boots/winter/medical,
/obj/item/clothing/suit/storage/hooded/wintercoat/medical,
/obj/item/clothing/under/rank/medical,
-/obj/item/clothing/under/seromi/smock/medical,
+/obj/item/clothing/under/teshari/smock/medical,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"Fu" = (
diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm
index 9dd406d57a..3e3f625621 100644
--- a/maps/tether/tether-07-station3.dmm
+++ b/maps/tether/tether-07-station3.dmm
@@ -454,11 +454,16 @@
/turf/simulated/floor,
/area/maintenance/station/ai)
"aaR" = (
-/obj/machinery/atmospherics/unary/engine{
+/obj/machinery/light/small{
dir = 1
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 4;
+ icon_state = "map_connector-fuel"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/excursion/general)
"aaS" = (
/obj/structure/catwalk,
@@ -522,19 +527,8 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration/pilot_office)
"aaY" = (
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
+/turf/simulated/wall/rshull,
+/area/shuttle/excursion/cargo)
"aaZ" = (
/obj/structure/railing{
dir = 4
@@ -2283,13 +2277,14 @@
/turf/simulated/floor,
/area/maintenance/cargo)
"aet" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1;
+ icon_state = "map-fuel"
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/general)
"aeu" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -2344,23 +2339,38 @@
/turf/simulated/floor/tiled/white,
/area/security/security_bathroom)
"aex" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/general)
"aey" = (
/turf/simulated/floor/carpet,
/area/security/breakroom)
"aez" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6;
+ icon_state = "intact-fuel"
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/general)
"aeA" = (
/obj/effect/floor_decal/corner/red{
dir = 10;
@@ -2469,6 +2479,45 @@
},
/turf/simulated/floor/wood,
/area/security/breakroom)
+"aeG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1;
+ icon_state = "map-fuel"
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/general)
+"aeH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10;
+ icon_state = "intact-fuel"
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/general)
+"aeI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"aeJ" = (
/turf/simulated/floor/wood,
/area/security/breakroom)
@@ -2490,6 +2539,27 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_lockerroom)
+"aeL" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/random/powercell,
+/obj/item/stack/material/tritium{
+ amount = 15
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/excursion/general)
"aeM" = (
/obj/structure/railing{
dir = 4
@@ -2576,6 +2646,12 @@
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"aeS" = (
+/obj/machinery/light/spot{
+ pixel_y = 32
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/excursion/cargo)
"aeT" = (
/turf/simulated/wall,
/area/security/security_equiptment_storage)
@@ -2624,12 +2700,46 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
+"aeX" = (
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/securiship/cockpit)
"aeY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/wood,
/area/security/breakroom)
+"aeZ" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor/tiled/eris/steel/gray_perforated,
+/area/shuttle/securiship/general)
"afa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -2725,12 +2835,86 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
+"afg" = (
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/securiship/engines)
"afh" = (
-/obj/machinery/light/spot{
- pixel_y = 32
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"afi" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/excursion/cargo)
+"afj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/wall/rshull,
-/area/shuttle/excursion/general)
+/area/shuttle/excursion/cargo)
+"afk" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"afl" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -30;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/item/weapon/tank/phoron,
+/turf/simulated/floor/tiled/eris/dark/techfloor,
+/area/shuttle/medivac/engines)
"afm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -2750,6 +2934,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/hallway)
+"afn" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "shuttle_inbound"
+ },
+/obj/structure/plasticflaps,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"afo" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 1
@@ -2784,6 +2976,49 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
+"afr" = (
+/obj/machinery/power/apc{
+ alarms_hidden = 1;
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/simulated/floor/tiled/eris/white,
+/area/shuttle/medivac/general)
+"afs" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"aft" = (
+/obj/structure/handrail,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/closet/emergsuit_wall{
+ pixel_y = 32
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/cargo)
"afu" = (
/obj/structure/cable/green{
d1 = 4;
@@ -2815,9 +3050,42 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_processing)
+"afx" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/cargo)
"afy" = (
/turf/simulated/wall/r_wall,
/area/ai)
+"afz" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"afA" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "shuttle_inbound"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"afB" = (
/obj/structure/cable/green{
d1 = 4;
@@ -2856,6 +3124,15 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/security/hallway)
+"afE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/cargo)
"afF" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -2893,6 +3170,12 @@
/obj/structure/curtain/open/shower/security,
/turf/simulated/floor/tiled,
/area/security/security_bathroom)
+"afH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"afI" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
@@ -2908,6 +3191,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
+"afJ" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/excursion/cargo)
"afK" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -2937,6 +3234,23 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
+"afM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cockpit)
"afN" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2948,6 +3262,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
+"afO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/general)
"afP" = (
/turf/simulated/wall/r_wall,
/area/ai_core_foyer)
@@ -2994,12 +3315,22 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"afT" = (
+/turf/simulated/wall/rshull,
+/area/shuttle/excursion/cockpit)
"afU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/bluegrid,
/area/ai)
+"afV" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/excursion/general)
"afW" = (
/obj/effect/floor_decal/borderfloorblack,
/obj/effect/floor_decal/borderfloorblack/corner2{
@@ -3081,6 +3412,50 @@
/obj/structure/railing,
/turf/simulated/open,
/area/security/brig)
+"agc" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
+"agd" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
+"age" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cyancorner,
+/area/shuttle/medivac/cockpit)
+"agf" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
"agg" = (
/turf/simulated/floor/airless,
/area/space)
@@ -3781,15 +4156,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aiK" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"aiQ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -18607,14 +18973,6 @@
},
/turf/simulated/floor,
/area/tether/exploration)
-"aQL" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "shuttle_inbound"
- },
-/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"aQN" = (
/obj/machinery/light/small{
dir = 1
@@ -18683,19 +19041,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"aQX" = (
-/obj/machinery/shipsensors{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"aQY" = (
/obj/structure/railing{
dir = 8
@@ -19037,24 +19382,6 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/station/sec_upper)
-"aSb" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/handrail{
- dir = 4
- },
-/obj/structure/closet/emergsuit_wall{
- pixel_y = 32
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
"aSd" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -19124,15 +19451,6 @@
/obj/machinery/light,
/turf/simulated/open,
/area/tether/exploration)
-"aSq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 6;
- icon_state = "intact-fuel"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"aSr" = (
/obj/structure/railing,
/obj/structure/table/rack{
@@ -20476,20 +20794,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/cockpit)
-"aWp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"aWq" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1;
@@ -22069,14 +22373,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"cQa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- dir = 1;
- icon_state = "map-fuel"
- },
-/obj/structure/shuttle/engine/heater,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"cTI" = (
/obj/machinery/door/airlock/glass_external,
/obj/effect/map_helper/airlock/door/ext_door,
@@ -22442,46 +22738,6 @@
/obj/structure/bed/chair/bay/chair,
/turf/simulated/floor/tiled/eris/dark/violetcorener,
/area/shuttle/securiship/general)
-"eQX" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/hatch{
- req_one_access = list()
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
-"eVj" = (
-/obj/structure/cable/cyan{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- alarms_hidden = 1;
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
-/area/shuttle/securiship/engines)
"eWf" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
@@ -22549,12 +22805,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"feb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/wall/rshull,
-/area/shuttle/excursion/general)
"fkB" = (
/obj/machinery/door/airlock/glass_external,
/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
@@ -22683,13 +22933,6 @@
/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"geP" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/hatch{
- req_one_access = list(67)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/cockpit)
"gfw" = (
/obj/structure/cable{
d1 = 4;
@@ -23200,14 +23443,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"iJT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 6;
- icon_state = "intact-fuel"
- },
-/obj/structure/shuttle/engine/heater,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"iOI" = (
/obj/structure/cable{
d1 = 4;
@@ -23234,12 +23469,6 @@
/obj/machinery/suit_cycler/pilot,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/excursion/general)
-"iQS" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/brown,
-/obj/structure/curtain/open/bed,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
"iUO" = (
/obj/structure/barricade,
/turf/simulated/floor,
@@ -23639,12 +23868,6 @@
},
/turf/simulated/floor/tiled/eris/steel/cyancorner,
/area/shuttle/medivac/cockpit)
-"lfJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/cockpit)
"lnp" = (
/obj/machinery/door/airlock/glass_external,
/obj/structure/cable/green{
@@ -24048,15 +24271,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"nwM" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"nzo" = (
/obj/machinery/power/terminal{
dir = 1;
@@ -24095,23 +24309,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"nVr" = (
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/cyan{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/aux,
-/turf/simulated/floor/tiled/eris/steel/gray_perforated,
-/area/shuttle/securiship/general)
"nYv" = (
/obj/machinery/door/window/brigdoor/westleft{
req_access = newlist();
@@ -24191,25 +24388,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"opP" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/power/apc{
- alarms_hidden = 1;
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/table/glass,
-/obj/machinery/recharger,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/eris/steel/cyancorner,
-/area/shuttle/medivac/cockpit)
"oqg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 8
@@ -24544,23 +24722,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/general)
-"qxW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"qEn" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/handrail{
@@ -24624,20 +24785,6 @@
},
/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/shuttle/medivac/engines)
-"qPS" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"qTB" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/power/apc{
@@ -24711,29 +24858,6 @@
/obj/effect/decal/cleanable/blood/gibs,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"rAB" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 10
- },
-/obj/item/weapon/tank/phoron,
-/turf/simulated/floor/tiled/eris/dark/techfloor,
-/area/shuttle/medivac/engines)
"rBj" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -24869,14 +24993,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/general)
-"rUl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 10;
- icon_state = "intact-fuel"
- },
-/obj/structure/shuttle/engine/heater,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"scI" = (
/obj/machinery/alarm{
dir = 1;
@@ -24896,20 +25012,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
-"sdI" = (
-/obj/machinery/power/apc{
- alarms_hidden = 1;
- dir = 2;
- name = "south bump";
- pixel_y = -28;
- req_access = list(67)
- },
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/structure/cable,
-/turf/simulated/floor/tiled/eris/white,
-/area/shuttle/medivac/general)
"shd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
/turf/simulated/floor/tiled/techmaint,
@@ -25100,21 +25202,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uqh" = (
-/obj/structure/handrail,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/closet/emergsuit_wall{
- pixel_y = 32
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"urb" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/portables_connector{
@@ -25123,19 +25210,6 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"usk" = (
-/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
-/area/shuttle/securiship/cockpit)
"utX" = (
/obj/machinery/conveyor_switch/oneway{
id = "shuttle_outbound"
@@ -25276,27 +25350,6 @@
"vqZ" = (
/turf/simulated/wall/rshull,
/area/shuttle/securiship/cockpit)
-"vre" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/table/steel,
-/obj/machinery/cell_charger,
-/obj/random/powercell,
-/obj/item/stack/material/tritium{
- amount = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
"vux" = (
/obj/structure/cable/green{
dir = 1;
@@ -25468,23 +25521,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"wJy" = (
-/obj/structure/handrail{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"wMg" = (
/obj/machinery/light,
/obj/structure/cable/green{
@@ -25558,15 +25594,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/general)
-"wUW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/hatch{
- req_one_access = list(67)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"wWn" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -25704,13 +25731,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"xAb" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "shuttle_inbound"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"xBW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25752,23 +25772,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
/area/quartermaster/office)
-"ydg" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"ydG" = (
/obj/machinery/atmospherics/binary/pump/fuel{
dir = 8
@@ -28741,7 +28744,7 @@ aaa
vqZ
vqZ
lyg
-usk
+aeX
iXe
uZd
oPK
@@ -28890,7 +28893,7 @@ eLO
lHY
wcg
xqB
-eVj
+afg
ciI
plY
xny
@@ -29167,7 +29170,7 @@ aaa
isz
nvd
khf
-nVr
+aeZ
ccy
jna
nYO
@@ -35741,7 +35744,7 @@ avs
aYc
hIb
pgk
-rAB
+afl
cUg
iEF
gdk
@@ -36535,10 +36538,10 @@ acK
acK
acK
adj
-ydg
-ydg
-ydg
-adj
+afM
+afM
+afM
+afT
acK
acK
ams
@@ -36596,7 +36599,7 @@ gvu
nfB
lxr
wss
-sdI
+afr
aYa
aYk
avs
@@ -36668,9 +36671,9 @@ akS
acE
acK
acK
+afh
+afs
aaY
-aQX
-adj
adj
eBO
adj
@@ -36680,7 +36683,7 @@ adj
kCz
aZy
aWG
-adj
+afT
adj
acK
ams
@@ -36810,21 +36813,21 @@ abX
acE
acK
acK
-adj
-adj
-adj
-aSb
+aaY
+aaY
+aaY
+aaR
oNI
iPK
rFo
-aWp
+aex
jsf
aWn
aUJ
aXb
-adj
-iJT
-aaR
+afT
+aez
+afV
ams
aXq
abe
@@ -36951,11 +36954,11 @@ abe
abX
acE
acK
-afh
-adj
-uqh
-wUW
-aSq
+aeS
+aaY
+aft
+afE
+aet
oqg
cgm
bDD
@@ -36964,9 +36967,9 @@ adj
iCh
wRt
eug
-adj
-cQa
-aaR
+afT
+aeG
+afV
ams
aXq
abe
@@ -37093,19 +37096,19 @@ abe
abX
acE
acK
-qxW
-iQS
-wJy
-adj
+aeI
+afi
+afx
+aaY
aVi
hTW
adj
akx
adj
adj
-lfJ
-geP
-lfJ
+wOI
+afO
+wOI
aiX
aZD
acK
@@ -37160,7 +37163,7 @@ aab
aab
aXy
aXy
-opP
+age
bfa
nYv
bYH
@@ -37234,11 +37237,11 @@ aaa
abe
abX
acE
-adj
-adj
-adj
-adj
-adj
+aaY
+aaY
+aaY
+aaY
+aaY
adj
adj
adj
@@ -37376,11 +37379,11 @@ aaa
abe
acs
acF
-qxW
+aeI
qEn
oYj
qTB
-qPS
+afH
iWG
aWL
hpj
@@ -37518,11 +37521,11 @@ aaa
abe
abY
acE
-qxW
+aeI
hBg
fQo
lSD
-eQX
+afJ
reu
wWn
wSA
@@ -37660,11 +37663,11 @@ aaa
abe
acA
acG
-qxW
+aeI
doD
vpU
utX
-qPS
+afH
aUf
aXD
isN
@@ -37802,11 +37805,11 @@ aaa
abe
abX
acE
-adj
-adj
+aaY
+aaY
abL
aRZ
-adj
+aaY
aUl
adj
adj
@@ -37945,10 +37948,10 @@ abe
abX
acE
acK
-adj
+aaY
bFX
cow
-adj
+aaY
mnk
kVs
elB
@@ -38087,10 +38090,10 @@ abe
abX
acE
acK
-afh
-feb
-feb
-adj
+aeS
+afj
+afj
+aaY
aUR
dhW
xeA
@@ -38101,8 +38104,8 @@ gsT
ikk
efQ
wPF
-cQa
-aaR
+aeG
+afV
ams
aSx
krj
@@ -38230,11 +38233,11 @@ abX
acE
acK
acK
-aiK
-nwM
-adj
+afk
+afz
+aaY
aVQ
-vre
+aeL
jcr
nzo
ijU
@@ -38243,8 +38246,8 @@ dhq
iEV
tEV
xiw
-rUl
-aaR
+aeH
+afV
ams
eAm
abe
@@ -38372,9 +38375,9 @@ akS
acE
acK
acK
-aQL
-xAb
-adj
+afn
+afA
+aaY
adj
adj
adj
@@ -40281,11 +40284,11 @@ avt
avt
adD
aZS
-aet
-aex
-aex
-aex
-aez
+agc
+agd
+agd
+agd
+agf
baB
adD
avt
diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm
index 370af2539b..d44b934837 100644
--- a/maps/tether/tether_areas.dm
+++ b/maps/tether/tether_areas.dm
@@ -106,7 +106,7 @@
icon_state = "vacant_site"
/area/centcom/simulated
- dynamic_lighting = 1
+ dynamic_lighting = 0
/area/centcom/simulated/terminal
name = "\improper Docking Terminal"
@@ -1386,9 +1386,6 @@
/area/shuttle/tourbus/cockpit
name = "\improper Tour Bus Cockpit"
-/area/shuttle/tourbus/engines
- name = "\improper Tour Bus Engines"
-
/area/shuttle/medivac
requires_power = 1
icon_state = "shuttle2"
@@ -1553,6 +1550,12 @@ area/shuttle/mining_outpost/shuttle
/area/unknown/dorm4
name = "Unknown Dorm 4"
+/area/unknown/dorm5
+ name = "Unknown Dorm 5"
+
+/area/unknown/dorm6
+ name = "Unknown Dorm 6"
+
// ERT/Deathsquad Shuttle
/area/shuttle/specialops/centcom
name = "Special Operations Shuttle - Centcom"
diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm
index 1df3034450..c9dd90e94c 100644
--- a/maps/tether/tether_defines.dm
+++ b/maps/tether/tether_defines.dm
@@ -15,16 +15,13 @@
#define Z_LEVEL_OFFMAP2 14
#define Z_LEVEL_ROGUEMINE_1 15
#define Z_LEVEL_ROGUEMINE_2 16
-#define Z_LEVEL_ROGUEMINE_3 17
-#define Z_LEVEL_ROGUEMINE_4 18
-#define Z_LEVEL_BEACH 19
-#define Z_LEVEL_BEACH_CAVE 20
-#define Z_LEVEL_AEROSTAT 21
-#define Z_LEVEL_AEROSTAT_SURFACE 22
-#define Z_LEVEL_DEBRISFIELD 23
-#define Z_LEVEL_GUTTERSITE 24
-#define Z_LEVEL_FUELDEPOT 25
-#define Z_LEVEL_GATEWAY 26
+#define Z_LEVEL_BEACH 17
+#define Z_LEVEL_BEACH_CAVE 18
+#define Z_LEVEL_AEROSTAT 19
+#define Z_LEVEL_AEROSTAT_SURFACE 20
+#define Z_LEVEL_DEBRISFIELD 21
+#define Z_LEVEL_FUELDEPOT 22
+#define Z_LEVEL_GATEWAY 23
//Camera networks
#define NETWORK_TETHER "Tether"
@@ -53,8 +50,8 @@
use_overmap = TRUE
overmap_z = Z_LEVEL_MISC
- overmap_size = 35
- overmap_event_areas = 34
+ overmap_size = 50
+ overmap_event_areas = 44
usable_email_tlds = list("virgo.nt")
zlevel_datum_type = /datum/map_z_level/tether
@@ -193,9 +190,7 @@
belter_docked_z = list(Z_LEVEL_SPACE_HIGH)
belter_transit_z = list(Z_LEVEL_MISC)
belter_belt_z = list(Z_LEVEL_ROGUEMINE_1,
- Z_LEVEL_ROGUEMINE_2,
- Z_LEVEL_ROGUEMINE_3,
- Z_LEVEL_ROGUEMINE_4)
+ Z_LEVEL_ROGUEMINE_2)
//TFF 16/4/20 - mining outpost shuttle defines
mining_station_z = list(Z_LEVEL_SPACE_HIGH)
diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm
index 8f459766c7..6ec0c4bc62 100644
--- a/maps/tether/tether_shuttles.dm
+++ b/maps/tether/tether_shuttles.dm
@@ -201,7 +201,7 @@
/obj/effect/overmap/visitable/ship/landable/excursion
name = "Excursion Shuttle"
desc = "The traditional Excursion Shuttle. NT Approved!"
- vessel_mass = 10000
+ vessel_mass = 8000
vessel_size = SHIP_SIZE_SMALL
shuttle = "Excursion Shuttle"
@@ -218,7 +218,7 @@
warmup_time = 0
current_location = "tourbus_dock"
docking_controller_tag = "tourbus_docker"
- shuttle_area = list(/area/shuttle/tourbus/cockpit, /area/shuttle/tourbus/general, /area/shuttle/tourbus/engines)
+ shuttle_area = list(/area/shuttle/tourbus/cockpit, /area/shuttle/tourbus/general)
fuel_consumption = 1
move_direction = NORTH
@@ -244,14 +244,14 @@
current_location = "tether_medivac_dock"
docking_controller_tag = "medivac_docker"
shuttle_area = list(/area/shuttle/medivac/cockpit, /area/shuttle/medivac/general, /area/shuttle/medivac/engines)
- fuel_consumption = 1
+ fuel_consumption = 2
move_direction = EAST
// The 'ship' of the excursion shuttle
/obj/effect/overmap/visitable/ship/landable/medivac
name = "Medivac Shuttle"
desc = "A medical evacuation shuttle."
- vessel_mass = 3000
+ vessel_mass = 4000
vessel_size = SHIP_SIZE_SMALL
shuttle = "Medivac Shuttle"
fore_dir = EAST
@@ -269,14 +269,14 @@
current_location = "tether_securiship_dock"
docking_controller_tag = "securiship_docker"
shuttle_area = list(/area/shuttle/securiship/cockpit, /area/shuttle/securiship/general, /area/shuttle/securiship/engines)
- fuel_consumption = 1
+ fuel_consumption = 2
move_direction = NORTH
// The 'ship' of the excursion shuttle
/obj/effect/overmap/visitable/ship/landable/securiship
name = "Securiship Shuttle"
desc = "A security transport ship."
- vessel_mass = 3000
+ vessel_mass = 4000
vessel_size = SHIP_SIZE_SMALL
shuttle = "Securiship Shuttle"
fore_dir = EAST
diff --git a/maps/tether/tether_telecomms.dm b/maps/tether/tether_telecomms.dm
index 5f7cd19599..ac43e2d453 100644
--- a/maps/tether/tether_telecomms.dm
+++ b/maps/tether/tether_telecomms.dm
@@ -5,12 +5,8 @@
// Telecomms doesn't know about connected z-levels, so we need relays even for the other surface levels.
/obj/machinery/telecomms/relay/preset/tether
id = "Tether Relay"
- listening_level = Z_LEVEL_SURFACE_LOW
autolinkers = list("tether_relay")
-/obj/machinery/telecomms/relay/preset/centcom/tether
- listening_level = Z_LEVEL_SURFACE_LOW
-
// #### Hub ####
/obj/machinery/telecomms/hub/preset/tether
id = "Hub"
diff --git a/sound/effects/footstep/giantstep_gigga.ogg b/sound/effects/footstep/giantstep_gigga.ogg
new file mode 100644
index 0000000000..d3536922d8
Binary files /dev/null and b/sound/effects/footstep/giantstep_gigga.ogg differ
diff --git a/sound/effects/footstep/giantstep_gigga2(unsused).ogg b/sound/effects/footstep/giantstep_gigga2(unsused).ogg
new file mode 100644
index 0000000000..d335e0f2be
Binary files /dev/null and b/sound/effects/footstep/giantstep_gigga2(unsused).ogg differ
diff --git a/sound/effects/footstep/giantstep_normal(unsused).ogg b/sound/effects/footstep/giantstep_normal(unsused).ogg
new file mode 100644
index 0000000000..aa212e488e
Binary files /dev/null and b/sound/effects/footstep/giantstep_normal(unsused).ogg differ
diff --git a/sound/effects/footstep/giantstep_normal2(unsused).ogg b/sound/effects/footstep/giantstep_normal2(unsused).ogg
new file mode 100644
index 0000000000..dd08b550fc
Binary files /dev/null and b/sound/effects/footstep/giantstep_normal2(unsused).ogg differ
diff --git a/sound/items/drop/smolematerial.ogg b/sound/items/drop/smolematerial.ogg
new file mode 100644
index 0000000000..bb326e65c7
Binary files /dev/null and b/sound/items/drop/smolematerial.ogg differ
diff --git a/sound/items/smolebuildingdestoryed.ogg b/sound/items/smolebuildingdestoryed.ogg
new file mode 100644
index 0000000000..f4c49ea5ea
Binary files /dev/null and b/sound/items/smolebuildingdestoryed.ogg differ
diff --git a/sound/items/smolebuildingdestoryedshort.ogg b/sound/items/smolebuildingdestoryedshort.ogg
new file mode 100644
index 0000000000..ecaa0fca52
Binary files /dev/null and b/sound/items/smolebuildingdestoryedshort.ogg differ
diff --git a/sound/items/smolebuildinghit1.ogg b/sound/items/smolebuildinghit1.ogg
new file mode 100644
index 0000000000..266cabf80b
Binary files /dev/null and b/sound/items/smolebuildinghit1.ogg differ
diff --git a/sound/items/smolebuildinghit2.ogg b/sound/items/smolebuildinghit2.ogg
new file mode 100644
index 0000000000..04e6540341
Binary files /dev/null and b/sound/items/smolebuildinghit2.ogg differ
diff --git a/sound/items/smolelargebuilding(unused).ogg b/sound/items/smolelargebuilding(unused).ogg
new file mode 100644
index 0000000000..7e7d5069dc
Binary files /dev/null and b/sound/items/smolelargebuilding(unused).ogg differ
diff --git a/sound/items/smolelargeunbuild.ogg b/sound/items/smolelargeunbuild.ogg
new file mode 100644
index 0000000000..9e6530358d
Binary files /dev/null and b/sound/items/smolelargeunbuild.ogg differ
diff --git a/sound/items/smolesmallbuild.ogg b/sound/items/smolesmallbuild.ogg
new file mode 100644
index 0000000000..92630fb3ad
Binary files /dev/null and b/sound/items/smolesmallbuild.ogg differ
diff --git a/sound/items/storage/smolecase.ogg b/sound/items/storage/smolecase.ogg
new file mode 100644
index 0000000000..e7db383cb2
Binary files /dev/null and b/sound/items/storage/smolecase.ogg differ
diff --git a/sound/items/tinytether.ogg b/sound/items/tinytether.ogg
new file mode 100644
index 0000000000..9a6223ac2c
Binary files /dev/null and b/sound/items/tinytether.ogg differ
diff --git a/vorestation.dme b/vorestation.dme
index b873da6a04..fe4569b6b1 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -2055,9 +2055,9 @@
#include "code\modules\clothing\suits\utility_vr.dm"
#include "code\modules\clothing\suits\wiz_robe.dm"
#include "code\modules\clothing\suits\wolfbrigade.dm"
-#include "code\modules\clothing\suits\aliens\seromi.dm"
-#include "code\modules\clothing\suits\aliens\seromi_yw.dm"
+#include "code\modules\clothing\suits\aliens\teshari_yw.dm"
#include "code\modules\clothing\suits\aliens\tajara.dm"
+#include "code\modules\clothing\suits\aliens\teshari.dm"
#include "code\modules\clothing\suits\aliens\unathi.dm"
#include "code\modules\clothing\suits\aliens\vox.dm"
#include "code\modules\clothing\under\color.dm"
@@ -2094,7 +2094,7 @@
#include "code\modules\clothing\under\jobs\engineering.dm"
#include "code\modules\clothing\under\jobs\medsci.dm"
#include "code\modules\clothing\under\jobs\security.dm"
-#include "code\modules\clothing\under\xenos\seromi.dm"
+#include "code\modules\clothing\under\xenos\teshari.dm"
#include "code\modules\clothing\under\xenos\vox.dm"
#include "code\modules\compass\^compass.dm"
#include "code\modules\compass\_compass.dm"
@@ -2539,6 +2539,7 @@
#include "code\modules\mob\mob_grab.dm"
#include "code\modules\mob\mob_grab_specials.dm"
#include "code\modules\mob\mob_helpers.dm"
+#include "code\modules\mob\mob_helpers_vr.dm"
#include "code\modules\mob\mob_movement.dm"
#include "code\modules\mob\mob_planes.dm"
#include "code\modules\mob\mob_planes_vr.dm"
@@ -2731,11 +2732,11 @@
#include "code\modules\mob\living\carbon\human\species\station\monkey_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\prometheans.dm"
#include "code\modules\mob\living\carbon\human\species\station\prometheans_vr.dm"
-#include "code\modules\mob\living\carbon\human\species\station\seromi.dm"
#include "code\modules\mob\living\carbon\human\species\station\station.dm"
#include "code\modules\mob\living\carbon\human\species\station\station_special_abilities_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\station_special_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\station_vr.dm"
+#include "code\modules\mob\living\carbon\human\species\station\teshari.dm"
#include "code\modules\mob\living\carbon\human\species\station\xenochimera_hud_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\xenochimera_trait_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\protean_vr\protean_blob.dm"
@@ -3202,13 +3203,13 @@
#include "code\modules\organs\subtypes\machine.dm"
#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\shadekin_vr.dm"
#include "code\modules\organs\subtypes\slime.dm"
#include "code\modules\organs\subtypes\slime_vr.dm"
#include "code\modules\organs\subtypes\standard.dm"
#include "code\modules\organs\subtypes\standard_vr.dm"
+#include "code\modules\organs\subtypes\teshari.dm"
#include "code\modules\organs\subtypes\unathi.dm"
#include "code\modules\organs\subtypes\unbreakable.dm"
#include "code\modules\organs\subtypes\unseverable.dm"
@@ -3878,6 +3879,7 @@
#include "code\modules\vore\resizing\holder_micro_vr.dm"
#include "code\modules\vore\resizing\resize_vr.dm"
#include "code\modules\vore\resizing\sizegun_vr.dm"
+#include "code\modules\vore\smoleworld\smoleworld_vr.dm"
#include "code\modules\vore\weight\fitness_machines_vr.dm"
#include "code\modules\xenoarcheaology\anomaly_container.dm"
#include "code\modules\xenoarcheaology\boulder.dm"